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:
20
scripts/postgresql/unified/00-create-tenant-database.sql
Normal file
20
scripts/postgresql/unified/00-create-tenant-database.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- GT 2.0 Tenant Database Creation Script
|
||||
-- Creates database for tenant cluster only
|
||||
-- This MUST run first (00-prefix ensures execution order)
|
||||
|
||||
-- Enable logging
|
||||
\set ON_ERROR_STOP on
|
||||
\set ECHO all
|
||||
|
||||
-- Create gt2_tenants database for tenant data storage
|
||||
SELECT 'CREATE DATABASE gt2_tenants'
|
||||
WHERE NOT EXISTS (SELECT FROM pg_database WHERE datname = 'gt2_tenants')\gexec
|
||||
|
||||
-- Log database creation completion
|
||||
DO $$
|
||||
BEGIN
|
||||
RAISE NOTICE '=== GT 2.0 TENANT DATABASE CREATION ===';
|
||||
RAISE NOTICE 'Database created successfully:';
|
||||
RAISE NOTICE '- gt2_tenants (tenant data storage with PGVector)';
|
||||
RAISE NOTICE '=======================================';
|
||||
END $$;
|
||||
Reference in New Issue
Block a user