Sistema NEXUS v3.4 migrado con: Estructura principal: - core/orchestration: Sistema SIMCO + CAPVED (27 directivas, 28 perfiles) - core/catalog: Catalogo de funcionalidades reutilizables - shared/knowledge-base: Base de conocimiento compartida - devtools/scripts: Herramientas de desarrollo - control-plane/registries: Control de servicios y CI/CD - orchestration/: Configuracion de orquestacion de agentes Proyectos incluidos (11): - gamilit (submodule -> GitHub) - trading-platform (OrbiquanTIA) - erp-suite con 5 verticales: - erp-core, construccion, vidrio-templado - mecanicas-diesel, retail, clinicas - betting-analytics - inmobiliaria-analytics - platform_marketing_content - pos-micro, erp-basico Configuracion: - .gitignore completo para Node.js/Python/Docker - gamilit como submodule (git@github.com:rckrdmrd/gamilit-workspace.git) - Sistema de puertos estandarizado (3005-3199) Generated with NEXUS v3.4 Migration System EPIC-010: Configuracion Git y Repositorios
63 lines
1.2 KiB
YAML
63 lines
1.2 KiB
YAML
name: orbiquant-llm-agent
|
|
channels:
|
|
- conda-forge
|
|
- defaults
|
|
dependencies:
|
|
- python=3.11
|
|
- pip>=23.0
|
|
|
|
# Core dependencies
|
|
- numpy>=1.24.0
|
|
- pandas>=2.0.0
|
|
|
|
# API Framework
|
|
- fastapi>=0.104.0
|
|
- uvicorn>=0.24.0
|
|
|
|
# Database
|
|
- sqlalchemy>=2.0.0
|
|
- redis-py>=5.0.0
|
|
|
|
# Development and code quality
|
|
- pytest>=7.4.0
|
|
- pytest-asyncio>=0.21.0
|
|
- pytest-cov>=4.1.0
|
|
- black>=23.0.0
|
|
- isort>=5.12.0
|
|
- flake8>=6.1.0
|
|
- mypy>=1.5.0
|
|
- ipython>=8.0.0
|
|
|
|
# Additional dependencies via pip
|
|
- pip:
|
|
# LLM and AI
|
|
- anthropic>=0.18.0
|
|
- langchain>=0.1.0
|
|
- langchain-anthropic>=0.1.0
|
|
- langchain-community>=0.0.20
|
|
- chromadb>=0.4.22
|
|
- tiktoken>=0.5.2
|
|
|
|
# Data validation
|
|
- pydantic>=2.0.0
|
|
- pydantic-settings>=2.0.0
|
|
|
|
# Database drivers
|
|
- psycopg2-binary>=2.9.0
|
|
- asyncpg>=0.29.0
|
|
|
|
# HTTP clients
|
|
- aiohttp>=3.9.0
|
|
- httpx>=0.26.0
|
|
- requests>=2.31.0
|
|
|
|
# Utilities
|
|
- python-dotenv>=1.0.0
|
|
- pyyaml>=6.0.0
|
|
- loguru>=0.7.0
|
|
- structlog>=23.2.0
|
|
|
|
# Embeddings and vector operations (optional)
|
|
# - sentence-transformers>=2.2.0
|
|
# - faiss-cpu>=1.7.4
|