Files
2026-03-12 13:06:02 -07:00

42 lines
1.1 KiB
Bash

# ========================================
# API Keys (REQUIRED)
# ========================================
# Google API Key (for ADK agents: Orchestrator, Analysis)
# Get your key from: https://aistudio.google.com/app/apikey
GOOGLE_API_KEY=your_google_api_key_here
# OpenAI API Key (for LangGraph agents: Research)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# ========================================
# Agent URLs (Frontend → Agents)
# Optional - these are the defaults
# ========================================
# Orchestrator (ADK + AG-UI Protocol)
ORCHESTRATOR_URL=http://localhost:9000
# Research Agent (LangGraph + A2A Protocol)
RESEARCH_AGENT_URL=http://localhost:9001
# Analysis Agent (ADK + A2A Protocol)
ANALYSIS_AGENT_URL=http://localhost:9002
# ========================================
# Agent Ports (Python Agents)
# Optional - used by Python agents to bind to specific ports
# ========================================
# Orchestrator
ORCHESTRATOR_PORT=9000
# Research Agent
RESEARCH_PORT=9001
# Analysis Agent
ANALYSIS_PORT=9002