-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (23 loc) · 1.59 KB
/
Copy path.env.example
File metadata and controls
30 lines (23 loc) · 1.59 KB
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
28
29
30
# ─────────────────────────────────────────────────────────
# AgentOps Center — Environment Configuration
# Copy this file to .env and fill in your API keys
# ─────────────────────────────────────────────────────────
# ── LLM Configuration ────────────────────────────────────
# OpenRouter API Key: https://openrouter.ai/keys
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Default Model for multi-agent execution
DEFAULT_MODEL=groq/llama-3.1-8b-instant
# Groq API key: https://console.groq.com
GROQ_API_KEY=your_groq_api_key_here
# OpenAI API key (optional): https://platform.openai.com
OPENAI_API_KEY=your_openai_api_key_here
# ── OpenTelemetry → SigNoz ───────────────────────────────
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
OTEL_SERVICE_NAME=agentops-center-backend
OTEL_SERVICE_VERSION=0.1.0
OTEL_EXPORTER_OTLP_INSECURE=true
# ── Application ───────────────────────────────────────────
APP_ENV=development
CORS_ORIGINS=http://localhost:3000
# ── Frontend ──────────────────────────────────────────────
NEXT_PUBLIC_API_URL=http://localhost:8000