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:
HackWeasel
2025-12-12 17:47:14 -05:00
commit 310491a557
750 changed files with 232701 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{
"name": "@gt2/tenant-app-e2e",
"version": "1.0.0",
"private": true,
"description": "GT 2.0 Tenant App End-to-End Testing with Playwright",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"test:install": "playwright install",
"test:install-deps": "playwright install-deps",
"test:codegen": "playwright codegen http://localhost:3002",
"test:guardian": "playwright test --grep '@guardian'",
"test:auth": "playwright test --grep '@auth'",
"test:documents": "playwright test --grep '@documents'",
"test:chat": "playwright test --grep '@chat'",
"test:smoke": "playwright test --grep '@smoke'",
"test:ci": "playwright test --reporter=html,junit",
"test:visual": "playwright test --grep '@visual'"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.9.0",
"typescript": "^5.3.0"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}