-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
27 lines (20 loc) · 996 Bytes
/
.env.example
File metadata and controls
27 lines (20 loc) · 996 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
# Copy as .env file and fill your values below
# Run ./update_dotenv_example.sh to update .env-example from your .env file.
# Choose Model Backend: 0 -> ML Dev, 1 -> Vertex
GOOGLE_GENAI_USE_VERTEXAI=1
# ML Dev backend config
GOOGLE_API_KEY=YOUR_VALUE_HERE
# Vertex backend config
# Rag Engine only works with Vertex. So we should configure it to use Vertex:
GOOGLE_CLOUD_PROJECT=YOUR_VALUE_HERE
GOOGLE_CLOUD_LOCATION=YOUR_VALUE_HERE
# Sources for the data
GCS_URI=YOUR_VALUE_HERE
LOCAL_TEMP_FILENAME=YOUR_VALUE_HERE
# Existing corpus in Vertex RAG Engine to be used by RAG agent
# e.g. projects/123456789/locations/us-east4/ragCorpora/98765432101234
RAG_CORPUS=YOUR_VALUE_HERE
# Staging bucket name for ADK agent deployment to Vertex AI Agent Engine (Shall respect this format gs://your-bucket-name)
STAGING_BUCKET=YOUR_VALUE_HERE
# Agent Engine ID in the following format: projects/<PROJECT_NUMBER>/locations/us-central1/reasoningEngines/<AGENT_ENGINE_ID>
AGENT_ENGINE_ID=YOUR_VALUE_HERE