26 lines
892 B
Plaintext
26 lines
892 B
Plaintext
# .env.example — Copy to .env for local development
|
|
# NEVER commit .env to Git. Add .env to .gitignore.
|
|
|
|
# GCP project and region (required)
|
|
GOOGLE_CLOUD_PROJECT=propane-will-491900-m5
|
|
GOOGLE_CLOUD_LOCATION=us-central1
|
|
|
|
# Authentication mode: True = Vertex AI (ADC), False = Gemini API key
|
|
GOOGLE_GENAI_USE_VERTEXAI=True
|
|
|
|
# Only set if GOOGLE_GENAI_USE_VERTEXAI=False (local testing without gcloud)
|
|
# GOOGLE_API_KEY=your-api-key-here
|
|
|
|
# RAG corpus resource name (from setup_corpus.py output)
|
|
# RAG_CORPUS=projects/propane-will-491900-m5/locations/us-central1/ragCorpora/XXXXXXXXX
|
|
|
|
# Agent Engine ID (from memory_setup.py output)
|
|
# AGENT_ENGINE_ID=your-agent-engine-id
|
|
|
|
# MCP server URLs (if using Google managed MCP)
|
|
# MAPS_MCP_URL=https://maps.googleapis.com/mcp
|
|
# BIGQUERY_MCP_URL=https://bigquery.googleapis.com/mcp
|
|
|
|
# Maps API key (for Google Maps MCP)
|
|
# MAPS_API_KEY=your-maps-api-key
|