-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
33 lines (26 loc) · 923 Bytes
/
Copy pathenv.example
File metadata and controls
33 lines (26 loc) · 923 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
31
32
33
# ============================================
# FinCampaign RAG Agent — Environment Variables
# Copy this file to .env and fill in your values
# ============================================
# Gemini API Key (Vertex AI Studio → Settings → API Keys)
GOOGLE_API_KEY=your_api_key_here
# Google Cloud Project
GOOGLE_CLOUD_PROJECT=the-bird-364803
GOOGLE_CLOUD_LOCATION=us-central1
GOOGLE_APPLICATION_CREDENTIALS=./service-account.json
# Vertex AI Search (RAG)
VERTEX_AI_DATASTORE_ID=fincampaign-rag-datastore
VERTEX_AI_SEARCH_ENGINE_ID=fincampaign-search-engine
# Google Cloud Storage
GCS_BUCKET_NAME=the-bird-364803-fincampaign-results
# API Config
API_HOST=0.0.0.0
API_PORT=8080
CORS_ORIGINS=http://localhost:3000
# Agent Models
ORCHESTRATOR_MODEL=gemini-2.0-flash
RISK_ANALYST_MODEL=gemini-2.0-flash
CAMPAIGN_MODEL=gemini-2.0-flash
COMPLIANCE_MODEL=gemini-2.0-flash
# Frontend
VITE_API_URL=http://localhost:8080