Files
2026-07-13 12:58:18 +08:00

46 lines
1.2 KiB
Bash

# ========================================
# API Keys
# ========================================
# Google API Key (for ADK agents: Orchestrator, Budget, Restaurant, Weather)
# Get your key from: https://aistudio.google.com/app/apikey
GOOGLE_API_KEY=your_google_api_key_here
# OpenAI API Key (for LangGraph agents: Itinerary)
# 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
# LangGraph Agents (Python + OpenAI + A2A Protocol)
ITINERARY_AGENT_URL=http://localhost:9001
RESTAURANT_AGENT_URL=http://localhost:9003
# ADK Agents (Python + Gemini + A2A Protocol)
BUDGET_AGENT_URL=http://localhost:9002
WEATHER_AGENT_URL=http://localhost:9005
# ========================================
# Agent Ports (Python Agents)
# Optional - used by Python agents to bind to specific ports
# ========================================
# Orchestrator
ORCHESTRATOR_PORT=9000
# LangGraph Agents
ITINERARY_PORT=9001
RESTAURANT_PORT=9003
# ADK Agents
BUDGET_PORT=9002
WEATHER_PORT=9005