We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c4ddf commit 9fdb8d3Copy full SHA for 9fdb8d3
.changeset/stale-times-bathe.md
@@ -0,0 +1,5 @@
1
+---
2
+'@openai/agents-openai': patch
3
4
+
5
+Fix codeInterpreterTool run replay by correctly using container_id from providerData (fixes #253)
packages/agents-openai/src/openaiResponsesModel.ts
@@ -541,7 +541,7 @@ function getInputItems(
541
outputs:
542
item.providerData?.outputs ?? item.providerData?.results ?? [],
543
status: CodeInterpreterStatus.parse(item.status ?? 'failed'),
544
- container_id: item.providerData?.containerId,
+ container_id: item.providerData?.container_id,
545
};
546
547
return entry;
0 commit comments