NATS wildcards (node.*.capabilities.get) only work for subscriptions, not for publish. Switch to a dedicated broadcast subject (fabric.capabilities.discover) that all NCS instances subscribe to, enabling proper scatter-gather discovery across nodes. Made-with: Cursor
39 lines
581 B
Plaintext
39 lines
581 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.12.1
|
|
|
|
# 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
|
|
python-multipart==0.0.9
|
|
|
|
# Token counting
|
|
tiktoken==0.5.2
|
|
|
|
# Voice stack
|
|
edge-tts==6.1.19
|
|
faster-whisper==1.1.1
|
|
|
|
# Testing
|
|
pytest==7.4.4
|
|
pytest-asyncio==0.23.3
|