- 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
34 lines
558 B
YAML
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
|
|
|
|
|
|
|
|
|
|
|