The AI may give incorrect answers or claim to know things it cannot actually know. For example, ChatGPT often provides outdated or incorrect API code methods. Do not rely on ChatGPT to correct or update your API code. ChatGPT tends to reuse old information and rewrite outdated examples, as shown below in this image:
Because of this, avoid sending ChatGPT questions about OpenAI APIs or any other APIs that have changed or been updated in the last two years. ChatGPT does not have current knowledge about these recent changes. The only way ChatGPT could possibly provide accurate information is if you paste the entire repository’s current usage into your question. Even then, ChatGPT will still respond as if your provided code is hypothetical, not actual.
"developer"
role is for reasoning AI
You can put back “developer”, as it is the “authority” role name for reasoning models. The API allows it for for most other models, auto-converting in the backend. We can auto-convert ourselves just in case:
developer_input = "JSON output strings: maximum 80 characters."
user_input="List closest relatives to Mandrill monkeys, descending"
# - variables for your Responses endpoint API call
model = "o3-mini"
input=[
{
"role": "role": "developer" if model.startswith("o") else "system",
"content": [
{
"type": "input_text",
"text": developer_input
}
]
},
{
"role": "user",
"content": [
{
"type": "input_text",
"text": user_input
}
]
}
]
From sending that to parse()
, along with the text_format=ExpertResponse
parameter with my BaseModel, we need a “scanner” to get the plain content.text out of all output items received back:
Content found at output index: 1
{
"topic": "Mandrill relatives taxonomy",
"chat_title_four_words": "Mandrill Relative Descending Order",
"output_fulfillment_intro": "# Analysis Answer",
"complete_answer": "Closest is the drill (Mandrillus leucophaeus); next are baboons; then mangabeys & macaques."
}
But we don’t need the “content”. We want to employ the “parsed” added by the SDK.
How “parsed” is the JSON in the response object? I can employ directly:
print(
"-" * 40,
f"\n{response.output_parsed.topic} - "
f"{response.output_parsed.chat_title_four_words}\n"
f"{response.output_parsed.output_fulfillment_intro}\n"
f"{response.output_parsed.complete_answer}\n"
)
Mandrill relatives taxonomy - Mandrill Relative Descending Order
Analysis Answer
Closest is the drill (Mandrillus leucophaeus); next are baboons; then mangabeys & macaques.
The complete_answer would be much longer if not for the developer instruction.