-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (25 loc) · 910 Bytes
/
Copy path.env.example
File metadata and controls
30 lines (25 loc) · 910 Bytes
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
# Google Cloud Configuration
GOOGLE_CLOUD_PROJECT=your-gcp-project-id
BIGQUERY_LOCATION=your-region
BIGQUERY_DATASET=your-dataset-name
VERTEX_AI_LOCATION=us-central1
# BigQuery Table Names
LISTINGS_TABLE=listings
NEIGHBORHOODS_TABLE=neighborhoods
# Data Source Configuration
USE_MOCK_DATA=true
# Optional: Model Configuration
DEFAULT_AGENT_MODEL=gemini-1.5-flash-latest
ORCHESTRATOR_MODEL=gemini-1.5-pro-latest
# Optional: Search Configuration
VECTOR_SEARCH_LIMIT=5
FINAL_RECOMMENDATION_COUNT=3
# SECURITY INSTRUCTIONS:
# =====================
# 1. Copy this file to .env: cp .env.example .env
# 2. Replace ALL placeholder values with your actual configuration
# 3. NEVER commit the .env file to version control
# 4. Keep your .env file secure and do not share it
# 5. For production, use secure secret management systems
#
# The .env file is already included in .gitignore to prevent accidental commits.