GPT 5 not working with the azure pipline #52
Closed
Breidenbach-Murach
started this conversation in
General
Replies: 2 comments 2 replies
-
I don't have access to GPT-5. I could test it only when it's open to everyone. But that could take a long time 😅. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I tried implementing the new gpt-5 model after we got access from Azure today.
With the default Azure AI Foundry pipeline we're getting the error
Error: Unsupported parameter: 'messages'. In the Responses API, this parameter has moved to 'input'. Try again with the new parameter. See the API documentation for more information: https://platform.openai.com/docs/api-reference/responses/create .
So I tried to change
messages
toinput
and added a very crude:body["input"] = body["messages"]
hereThat takes care of the error, but I'm not getting any response in the chat window now, even though it says it's streaming a response for a few seconds.
Since I don't really know how to proceed debugging this further, I thought I'd ask for some help. 😅
Beta Was this translation helpful? Give feedback.
All reactions