So the announcement said the API works with the new model, so I updated my Golang SDK grail (https://github.com/montanaflynn/grail) to use but it returns a 500 server error when you try to use it, and if you change to a completely unknown model it's not listed in the available models:
POST "https://api.openai.com/v1/responses": 500 Internal Server Error {
"message": "An error occurred while processing your request. You can retry your request, or contact us through our help center at help.openai.com if the error persists. Please include the request ID req_******************* in your message.",
"type": "server_error",
"param": null,
"code": "server_error"
}
POST "https://api.openai.com/v1/responses": 400 Bad Request {
"message": "Invalid value: 'blah'. Supported values are: 'gpt-image-1' and 'gpt-image-1-mini'.",
"type": "invalid_request_error",
"param": "tools[0].model",
"code": "invalid_value"
}
Yeah I just tried it and got a 500 server error with no details as to why:
POST "https://api.openai.com/v1/responses": 500 Internal Server Error {
"message": "An error occurred while processing your request. You can retry your request, or contact us through our help center at help.openai.com if the error persists. Please include the request ID req_******************* in your message.",
"type": "server_error",
"param": null,
"code": "server_error"
}
Interestingly if you change to request the model foobar you get an error showing this:
POST "https://api.openai.com/v1/responses": 400 Bad Request {
"message": "Invalid value: 'blah'. Supported values are: 'gpt-image-1' and 'gpt-image-1-mini'.",
"type": "invalid_request_error",
"param": "tools[0].model",
"code": "invalid_value"
}
I made this app to scratch an itch of mine caused by flakey ethernet connection through my dock. Fairly often my internet connection falls back to wifi instead of ethernet though my dock. There's no built-in menu bar icon I could find to show ethernet connection status and opening the network pane in system settings was tiresome. So I decided to make my first mac app!
Claude code wrote all the code, openai generated the app icon. I wrote a small golang program to take the 1024x1024 png from openai and resize/rename it to the expected iconset format and json file.
This was a fun experiment, I don't think there's ever been a time where people could so easily create native applications!
Possibly. I had to kind of be very specific to get the model to link to the pages in a specific format my frontend can parse and then interact with the pdf viewer[1]. It seems very full featured so it may have a way to highlight portions of the page, but my experience with PDFs leads me to believe it would be tricky.
That seems like a social network? This is just a tool to have an AI model answer questions without needing to do anything other than replace the domain.