I’ve already tried clearing my cache and using a different browser. I even tried creating a new project to see if that was the problem and nothing changed. I’m using just the default Playground settings here. It appears to only be happening in the playground, because when I try to interact with the API using Node.js, everything works as expected.
Is anyone else having this problem, or is it only myself?
For the technically inclined, the specific error that I get in the HTTP response is the following:
I encountered it when looking into API errors which gave `model gpt4-mini not supported or API not configured` , which might or might not be related to the web UI issue.
The issue seems to be related to the “code” that the Playground generates to create the response. Thanks to @sergey.petrenko for pointing that out.
If we look at the code using the “View code” window, we can see there is an array at the end of the parameter object, called include with two elements:
The response calls out ‘include[1]’ as the invalid parameter, which is the second item in the include array we saw before.
So, for whatever reason, the server is not expecting web_search_call.action.sources as a value for the “include” array. I don’t know if it’s just some code that got pushed to the frontend but not the backend or if something is typed incorrectly there, but my hope is that it’s an easy fix on their end. I rely on the playground to do a lot of testing and this has really thrown a wrench into that.