Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion genai-function-calling/openai-agents/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Use glibc-based image with pre-compiled wheels for psutil
FROM python:3.12-slim
FROM python:3.13-slim

# TODO: temporary until openinference-instrumentation-mcp 1.3.1 with ValidationError fix
RUN apt-get update \
&& apt-get install -y --no-install-recommends git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN --mount=type=cache,target=/root/.cache/pip python -m pip install --upgrade pip

Expand Down
4 changes: 2 additions & 2 deletions genai-function-calling/openai-agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ run pytest with dotenv, so that ENV variables are present:

```bash
rm cassettes/test_main.yaml
dotenv -f ../.env run -- pytest
dotenv -f .env run -- pytest
```

## Notes

The LLM should generate something like "The latest stable version of
Elasticsearch is 8.18.0", unless it hallucinates. Just run it again, if you
Elasticsearch is 8.19.3", unless it hallucinates. Just run it again, if you
see something else.

OpenAI Agents SDK's OpenTelemetry instrumentation is via
Expand Down
Loading