Add agents with custom swarm implementation

This commit is contained in:
akhisud3195 2025-01-13 18:20:38 +05:30
parent 24c4f6e552
commit a19dedd59f
35 changed files with 3413 additions and 0 deletions

34
apps/agents/.gitignore vendored Normal file
View file

@ -0,0 +1,34 @@
# Ignore all __pycache__ directories
/__pycache__/
**/__pycache__/
**/**/__pycache__/
**/**/__pycache__/**
# Ignore all .pyc files
*.pyc
**/*.pyc
**/**/*.pyc
# Ignore .DS_Store files
.DS_Store
**/.DS_Store
**/**/.DS_Store
# Ignore VSCode files
.vscode/*
# Environment files
.env
.env.local
# Api keys
**/*api_keys*
# Ignore .out, .lock, .log files
*.out
**/*.out
**/**/*.out
*.log
**/*.log
**/**/*.log
*.lock