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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great to integrate the new Responses API from OpenAI.
Announcement: https://openai.com/index/new-tools-for-building-agents/
It seems mostly like copy&paste with completions endpoint but with a few added fields: https://platform.openai.com/docs/api-reference/responses/create
The text was updated successfully, but these errors were encountered:
I'd love to do this, but I need to find a day job first
Sorry, something went wrong.
this works for me, maybe just add it to the source code? It is almost a 1:1 copy of create_chat
create_chat
export create_responses function create_responses(api_key::String, model_id::String, input; http_kwargs::NamedTuple = NamedTuple(), streamcallback = nothing, kwargs...) return OpenAI.openai_request("responses", api_key; method = "POST", http_kwargs = http_kwargs, model = model_id, input = input, streamcallback = streamcallback, kwargs...) end
No branches or pull requests
It would be great to integrate the new Responses API from OpenAI.
Announcement: https://openai.com/index/new-tools-for-building-agents/
It seems mostly like copy&paste with completions endpoint but with a few added fields: https://platform.openai.com/docs/api-reference/responses/create
The text was updated successfully, but these errors were encountered: