Skip to content

Commit e8ee448

Browse files
committed
Split env files into two
1 parent 116cc04 commit e8ee448

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

samples/adk-sql-agent/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ Configure the environment and run the sample:
3535
python -m venv venv/
3636
source venv/bin/activate
3737
pip install -r requirements.txt
38-
env $(cat main.env | xargs) python main.py
38+
env $(cat opentelemetry.env | xargs) python main.py
3939
```
4040

4141
Alternatively if you have [`uv`](https://docs.astral.sh/uv/) installed:
4242

4343
```sh
44-
uv run --env-file main.env main.py
44+
uv run --env-file opentelemetry.env main.py
4545
```
4646

4747
## Viewing the results
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED=true
22
OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT=true
3-
4-
GOOGLE_GENAI_USE_VERTEXAI=TRUE
5-
GOOGLE_CLOUD_LOCATION=us-central1
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
GOOGLE_GENAI_USE_VERTEXAI=TRUE
2+
GOOGLE_CLOUD_LOCATION=us-central1

0 commit comments

Comments
 (0)