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
4 changes: 2 additions & 2 deletions genai-function-calling/openai-agents/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
openai-agents~=0.0.11
openai-agents~=0.0.13
httpx~=0.28.1
mcp~=1.6.0

elastic-opentelemetry~=1.0.0
# Use openai-agents and MCP instrumentation from OpenInference
openinference-instrumentation-openai-agents~=0.1.8
openinference-instrumentation-openai-agents~=0.1.9
openinference-instrumentation-mcp~=1.1.0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

left this one out because we get a broken trace. Not sure if we need to change how the code is structured, or if some internal detail of how openai agents SDK MCP stuff works.. something isn't gelling with the instrumentation hooks in 1.2.0

2 changes: 1 addition & 1 deletion genai-function-calling/semantic-kernel-dotnet/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG DOTNET_VERSION=9.0

FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION}-alpine AS edot
ARG EDOT_VERSION=1.0.1
ARG EDOT_VERSION=1.0.2
ARG EDOT_INSTALL=https://github.com/elastic/elastic-otel-dotnet/releases/download/${EDOT_VERSION}/elastic-dotnet-auto-install.sh
ENV OTEL_DOTNET_AUTO_HOME=/edot
WORKDIR /edot
Expand Down
6 changes: 3 additions & 3 deletions genai-function-calling/semantic-kernel-dotnet/app.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel" Version="1.45.0" />
<PackageReference Include="Microsoft.SemanticKernel.Agents.Core" Version="1.45.0-preview" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.OpenAI" Version="1.45.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.47.0" />
<PackageReference Include="Microsoft.SemanticKernel.Agents.Core" Version="1.47.0-preview" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.OpenAI" Version="1.47.0" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions genai-function-calling/spring-ai/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.4</version>
<version>3.4.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>co.elastic.observability-labs</groupId>
Expand Down Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>co.elastic.otel</groupId>
<artifactId>elastic-otel-javaagent</artifactId>
<version>1.3.0</version>
<version>1.4.1</version>
<scope>optional</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions genai-function-calling/vercel-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"start": "node --env-file .env --import @elastic/opentelemetry-node --import ./telemetry.js index.js"
},
"dependencies": {
"ai": "^4.3.9",
"@ai-sdk/azure": "^1.3.19",
"@ai-sdk/openai": "^1.3.18",
"ai": "^4.3.10",
"@ai-sdk/azure": "^1.3.21",
"@ai-sdk/openai": "^1.3.20",
"@modelcontextprotocol/sdk": "^1.10.2",
"@elastic/opentelemetry-node": "^1",
"@arizeai/openinference-instrumentation-mcp": "^0.2.0"
Expand Down