Description
Hi! My team and I recently started adopting the new OpenAI Agents SDK into our project, and we were planning on using AgentOps for tracing, as it is currently suggested by the OpenAI docs. However, we've encountered a compatibility issue during implementation.
The Problem:
- Our project uses
"@openai/agents": "^0.0.9"
- The current published AgentOps npm package (v0.1.0) depends on
"@openai/agents": "^0.0.1"
- While your GitHub repo shows the dependency has been updated to
"@openai/agents": "^0.0.8"
, this hasn't been published to npm yet
Technical Details:
The newer versions of @openai/agents
(0.0.8+) are ESM-only, while earlier versions (0.0.1) used CommonJS. This causes compilation errors when AgentOps tries to import from the newer version using CommonJS require()
statements:
SyntaxError: Cannot use import statement outside a module at Object.<anonymous> (/node_modules/agentops/dist/instrumentation/openai-agents/index.js:4:18)
Question:
Is there a timeline for publishing a new AgentOps version that includes the @openai/agents
dependency upgrade? We'd love to use AgentOps for tracing but currently can't get onboarded due to this compatibility issue.
Thanks in advance!