22 lines
841 B
Bash
22 lines
841 B
Bash
# Project Configuration
|
|
GOOGLE_CLOUD_PROJECT=your-project-id
|
|
LOG_LEVEL=INFO
|
|
|
|
# API Configuration
|
|
GOOGLE_GENAI_USE_VERTEXAI=true # Set to true to use Vertex AI endpoint
|
|
GOOGLE_CLOUD_LOCATION=us-central1 # Required when GOOGLE_GENAI_USE_VERTEXAI=true
|
|
|
|
# Model Configuration
|
|
MODEL_DEV_API=models/gemini-2.0-flash-exp
|
|
MODEL_GOOGLE_GENAI_USE_VERTEXAI=gemini-2.0-flash-live-preview-04-09
|
|
VOICE_DEV_API=Puck
|
|
VOICE_GOOGLE_GENAI_USE_VERTEXAI=Aoede
|
|
|
|
# Cloud Function URLs
|
|
WEATHER_FUNCTION_URL=https://REGION-GOOGLE_CLOUD_PROJECT.cloudfunctions.net/get-weather-tool
|
|
CALENDAR_FUNCTION_URL=https://REGION-GOOGLE_CLOUD_PROJECT.cloudfunctions.net/get-calendar-tool
|
|
|
|
# API Keys
|
|
GOOGLE_API_KEY=your_google_api_key # Required for dev endpoint (GOOGLE_GENAI_USE_VERTEXAI=false)
|
|
OPENWEATHER_API_KEY=your_openweather_api_key # Required for weather functions
|