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,25 @@
# Development Dockerfile for Tenant App
# This is separate from production Dockerfile
FROM node:18-alpine
WORKDIR /app
# Install dependencies for building native modules
RUN apk add --no-cache python3 make g++ git
# Copy package files from the app
COPY package.json ./
# Install dependencies (tenant-app doesn't have workspace dependencies in package.json)
# Use --legacy-peer-deps to handle jspdf-autotable peer dependency mismatch
RUN npm install --legacy-peer-deps
# Copy application code
COPY . .
# Expose port
EXPOSE 3000
# Development command (will be overridden by docker-compose)
CMD ["npm", "run", "dev"]