## Agents Added - Alateya: R&D, biotech, innovations - Clan (Spirit): Community spirit agent - Eonarch: Consciousness evolution agent ## Changes - docker-compose.node1.yml: Added tokens for all 3 new agents - gateway-bot/http_api.py: Added configs and webhook endpoints - gateway-bot/clan_prompt.txt: New prompt file - gateway-bot/eonarch_prompt.txt: New prompt file ## Fixes - Fixed ROUTER_URL from :9102 to :8000 (internal container port) - All 9 Telegram agents now working ## Documentation - Created PROJECT-MASTER-INDEX.md - single entry point - Added various status documents and scripts Tokens configured: - Helion, NUTRA, Agromatrix (existing) - Alateya, Clan, Eonarch (new) - Druid, GreenFood, DAARWIZZ (configured)
34 lines
502 B
Plaintext
34 lines
502 B
Plaintext
# DAARION Memory Service
|
|
# Agent memory management with PostgreSQL + Qdrant + Cohere
|
|
|
|
# Web framework
|
|
fastapi==0.109.0
|
|
uvicorn[standard]==0.27.0
|
|
pydantic==2.5.3
|
|
pydantic-settings==2.1.0
|
|
|
|
# Database
|
|
asyncpg==0.29.0
|
|
sqlalchemy[asyncio]==2.0.25
|
|
alembic==1.13.1
|
|
|
|
# Vector database
|
|
qdrant-client==1.7.3
|
|
|
|
# Embeddings
|
|
cohere==4.44
|
|
|
|
# Utilities
|
|
python-dotenv==1.0.0
|
|
httpx==0.26.0
|
|
tenacity==8.2.3
|
|
structlog==24.1.0
|
|
PyJWT==2.8.0
|
|
|
|
# Token counting
|
|
tiktoken==0.5.2
|
|
|
|
# Testing
|
|
pytest==7.4.4
|
|
pytest-asyncio==0.23.3
|