mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-27 17:36:25 +02:00
Add agents with custom swarm implementation
This commit is contained in:
parent
24c4f6e552
commit
a19dedd59f
35 changed files with 3413 additions and 0 deletions
34
apps/agents/.gitignore
vendored
Normal file
34
apps/agents/.gitignore
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue