Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change migrates OpenAI from
/chat/completions
to the new Responses API.I believe it is (almost) non-breaking, and the only newly introduced features are support for the new
previous_response_id
argument andtruncation
argument when passed inproviderMeta
.The only breaking change - the
callId
property ofToolCall
I've renamed toid
because OpenAI now requires both anid
andcall_id
for tool calling, so it was that or something likecallCallId
. To avoid making this breaking, perhaps settingcallId
equal toid
when it's not provided ?I also changed the
providerMeta
function inHasProviderMeta
to return null when thevaluePath
can't be found. I assume it's meant to return the entire object whenvaluePath
isnull
, which it still does with this change. Before it also returned the entire object whenvaluePath
was set but the path returnednull
- I couldn't see anywhere that seemed to want that behaviour - maybe it was a bug ?Why this change ? As well as supporting the
previous_response_id
to help easily keep context in long threads, the Responses API is also their recommended option for new users.previous_response_id