-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 795 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (21 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Postgres (with pgvector extension)
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/agentdb
# Neo4j 5
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=password
# Redis
REDIS_URL=redis://localhost:6379
# Google Gemini (AI Studio — gemini-2.0-flash + text-embedding-004)
GOOGLE_API_KEY=your-google-ai-studio-key-here
# OpenTelemetry
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
OTEL_SERVICE_NAME=agent-service
# Memory
EPISODE_TTL_DAYS=90
# Docker Compose (--profile full)
# These are only needed when running `docker compose --profile full up`.
# The compose file sets inter-container defaults (e.g., postgres:5432 instead
# of localhost:5432), so you typically only need GOOGLE_API_KEY above.
AGENT_SERVICE_URL=http://agent-service:3000
GATEWAY_PORT=3001