Diseño completo de la plataforma de gobernanza de agentes IA: arquitectura two-tier (FastAPI core + Streamlit dashboard), modelos de dominio, contratos REST, interfaces Strategy (LLM, Guardrails, Registry), flujo LangGraph con HITL dinámico vía interrupt(), versionado tipo Git en sistema de ficheros, política y validadores, manejo de errores y plan de testing. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
43 lines
422 B
Plaintext
43 lines
422 B
Plaintext
# Secrets y configuración local
|
|
.env
|
|
.env.local
|
|
*.key
|
|
*.pem
|
|
|
|
# Datos runtime (registry, checkpoints, logs)
|
|
data/
|
|
*.sqlite
|
|
*.sqlite-*
|
|
*.jsonl
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
.eggs/
|
|
build/
|
|
dist/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Entornos virtuales
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# IDE / OS
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Streamlit
|
|
.streamlit/secrets.toml
|