-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.template
More file actions
39 lines (33 loc) · 1.84 KB
/
Copy path.env.template
File metadata and controls
39 lines (33 loc) · 1.84 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
31
32
33
34
35
36
37
38
39
# ==============================================================================
# Environment Variables Template
# ==============================================================================
# Copy this file to:
# - .env.local (for local full offline testing)
# - .env.staging (for staging cloud Vertex AI testing)
# - .env.production (for production cloud Vertex AI testing)
# Do NOT check the populated .env.* files into Git (VCS).
# ------------------------------------------------------------------------------
# Google ADK / GenAI SDK Authentication
# ------------------------------------------------------------------------------
# Set to True to use Vertex AI (Google Cloud), False for Google AI Studio.
GOOGLE_GENAI_USE_VERTEXAI="True"
# GCP Project settings (Only required when GOOGLE_GENAI_USE_VERTEXAI="True")
GOOGLE_CLOUD_PROJECT="your-gcp-project-id"
GOOGLE_CLOUD_LOCATION="us-east1"
# Google AI Studio API Key (Only required when GOOGLE_GENAI_USE_VERTEXAI="False")
# GEMINI_API_KEY="your-api-studio-key"
# ------------------------------------------------------------------------------
# Agent Runtime & Session Service
# ------------------------------------------------------------------------------
# The Reasoning Engine resource ID or full path:
# e.g., projects/1234567890/locations/us-east1/reasoningEngines/987654321
AGENT_RUNTIME_ID="your-agent-runtime-id"
# Session persistence URI scheme.
# - Use "sqlite:///shared_sessions.db" to run/test full offline locally.
# - Use "agentengine://" for cloud Vertex AI Agent Runtime sessions.
SESSION_SERVICE_URI="sqlite:///shared_sessions.db"
# ------------------------------------------------------------------------------
# Optional Configuration
# ------------------------------------------------------------------------------
# Artifact GCS bucket name
# LOGS_BUCKET_NAME="your-logs-bucket"