-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
22 lines (20 loc) · 814 Bytes
/
.env.example
File metadata and controls
22 lines (20 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# --- Google Cloud Configuration ---
# Used for both local development and deployment.
# Replace with your specific Google Cloud project details.
GOOGLE_CLOUD_PROJECT="your-gcp-project-id"
GOOGLE_CLOUD_LOCATION=global
GOOGLE_GENAI_USE_VERTEXAI=true
BQ_DATASET_ID="adk_sample"
# --- Cloud Run Deployment Configuration ---
# These values are used by the deploy_cloudrun.sh script.
# They can be overridden by command-line flags.
CLOUD_RUN_REGION="us-central1"
CLOUD_RUN_SERVICE_NAME="sample-bq-agent"
CLOUD_RUN_SERVICE_ACCOUNT="service-account@your-project.iam.gserviceaccount.com"
CLOUD_RUN_MEMORY="1Gi"
CLOUD_RUN_CPU="1"
CLOUD_RUN_TIMEOUT="300"
CLOUD_RUN_MAX_INSTANCES="2"
# --- Optional Agent Configuration ---
# Uncomment and set to use a different model for the agent.
# BIGQUERY_AGENT_MODEL="gemini-2.5-pro"