GT AI OS Community v2.0.33 - Add NVIDIA NIM and Nemotron agents
- Updated python_coding_microproject.csv to use NVIDIA NIM Kimi K2 - Updated kali_linux_shell_simulator.csv to use NVIDIA NIM Kimi K2 - Made more general-purpose (flexible targets, expanded tools) - Added nemotron-mini-agent.csv for fast local inference via Ollama - Added nemotron-agent.csv for advanced reasoning via Ollama - Added wiki page: Projects for NVIDIA NIMs and Nemotron
This commit is contained in:
24
scripts/migrations/016_add_is_compound_column.sql
Normal file
24
scripts/migrations/016_add_is_compound_column.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
-- Migration 016: Add is_compound column to model_configs
|
||||
-- Required for Compound model pass-through pricing
|
||||
-- Date: 2025-12-02
|
||||
|
||||
-- Add column if it doesn't exist
|
||||
DO $$
|
||||
BEGIN
|
||||
IF NOT EXISTS (
|
||||
SELECT 1 FROM information_schema.columns
|
||||
WHERE table_name = 'model_configs' AND column_name = 'is_compound'
|
||||
) THEN
|
||||
ALTER TABLE public.model_configs
|
||||
ADD COLUMN is_compound BOOLEAN DEFAULT FALSE;
|
||||
END IF;
|
||||
END $$;
|
||||
|
||||
-- Mark compound models
|
||||
UPDATE public.model_configs
|
||||
SET is_compound = true
|
||||
WHERE model_id LIKE '%compound%'
|
||||
AND is_compound IS NOT TRUE;
|
||||
|
||||
-- Verify
|
||||
SELECT model_id, is_compound FROM public.model_configs WHERE model_id LIKE '%compound%';
|
||||
Reference in New Issue
Block a user