Skip to content

Commit 662f353

Browse files
authored
Fix README venv installation command and dotenv (elastic#63)
* Fix README venv installation command * Fix dotenv command
1 parent 4e70f36 commit 662f353

File tree

1 file changed

+2
-2
lines changed
  • instrumentation/elastic-opentelemetry-instrumentation-openai

1 file changed

+2
-2
lines changed

instrumentation/elastic-opentelemetry-instrumentation-openai/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ and `dotenv` (a portable way to load environment variables).
2727
```
2828
python3 -m venv .venv
2929
source .venv/bin/activate
30-
pip install -r test-requirements.txt
30+
pip install -r dev-requirements.txt
3131
pip install python-dotenv[cli]
3232
```
3333

@@ -64,7 +64,7 @@ ollama pull all-minilm:33m
6464
Finally run the examples using [ollama.env](ollama.env) variables to point to Ollama instead of OpenAI:
6565

6666
```
67-
dotenv run -f ollama.env -- opentelemetry-instrument python examples/chat.py
67+
dotenv -f ollama.env run -- opentelemetry-instrument python examples/chat.py
6868
```
6969

7070
### Instrumentation specific environment variable configuration

0 commit comments

Comments
 (0)