#Responses API broken for chatgpt-4o-latest?
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
from openai import OpenAI
client = OpenAI(api_key = "REDACTED")
response = client.responses.create(
model = "chatgpt-4o-latest",
input = [{"role": "user", "content": "Hello!"}]
)
print(response.output_text)
Any reason this shouldn't work? Because it doesn't. It works for other models like gpt-4o and o3-mini etc etc.
What is the error message
It seems to be fixed now.