Files
microdao-daarion/services/memory-orchestrator/config.yaml
Apple 6bd769ef40 feat(city-map): Add 2D City Map with coordinates and agent presence
- Add migration 013_city_map_coordinates.sql with map coordinates, zones, and agents table
- Add /city/map API endpoint in city-service
- Add /city/agents and /city/agents/online endpoints
- Extend presence aggregator to include agents[] in snapshot
- Add AgentsSource for fetching agent data from DB
- Create CityMap component with interactive room tiles
- Add useCityMap hook for fetching map data
- Update useGlobalPresence to include agents
- Add map/list view toggle on /city page
- Add agent badges to room cards and map tiles
2025-11-27 07:00:47 -08:00

34 lines
558 B
YAML

backends:
short_term:
type: "postgresql"
table: "agent_memories_short"
retention_days: 7
mid_term:
type: "vector"
table: "agent_memories_vector"
embedding_dim: 1024 # BGE-M3 default
retention_days: 90
long_term:
type: "filesystem" # Phase 3 stub
path: "/data/kb"
embedding:
provider: "local" # or "openai"
model: "bge-m3"
endpoint: "http://localhost:8001/embed" # Placeholder
database:
url_env: "DATABASE_URL"
pool_size: 10
limits:
max_memories_per_agent: 10000
max_query_results: 50