In Chat Completions, that is where you have to use the special model that costs you every time, not ideal.
The Responses API is specifically built for serving internal tools.
Here’s that example call - which works fine, just tested. It just needs your annotation parser and content markup.
from openai import OpenAI; import json
client = OpenAI()
response = client.responses.create(
model="gpt-4o-mini",
input=[
{
"role": "system",
"content": [
{
"type": "input_text",
"text": "You are a research assistant. Today is Mon March 31, 2025"
}
]
},
{
"role": "user",
"content": [
{
"type": "input_text",
"text": "New stuff announced by OpenAI recently?"
}
]
}
],
tools=[
{
"type": "web_search_preview",
"user_location": {
"type": "approximate",
"country": "US"
},
"search_context_size": "medium"
}
],
max_output_tokens=2048,
top_p=0.7,
store=False
)
for i in response.output:
print(json.dumps(i.model_dump(),indent=3))
OpenAI news
OpenAI has recently announced several significant developments:
Expansion of Leadership Roles
On March 24, 2025, OpenAI’s Chief Operating Officer, Brad Lightcap, was appointed to lead global expansion and corporate partnerships. CEO Sam Altman will focus more on technical aspects, including research and product initiatives. This strategic shift aims to strengthen OpenAI’s position in the rapidly growing AI industry. (reuters.com)
Transition to For-Profit Entity
OpenAI is in the process of transitioning to a for-profit entity by the end of 2025 to fully secure a $40 billion funding round led by SoftBank. This move is essential for obtaining the necessary capital to develop advanced AI models. (reuters.com)
New Developer Tools
On March 11, 2025, OpenAI launched the Responses API, replacing the Assistants API, to aid developers in building advanced AI agents capable of executing complex tasks autonomously. This tool is free for developers, with the old API expected to phase out by mid-2026. (reuters.com)
Partnerships and Investments
OpenAI signed a nearly $12 billion contract with CoreWeave to supply computing power for training and running AI models over the next five years. Additionally, OpenAI is taking a $350 million equity stake in CoreWeave ahead of its anticipated $35 billion public listing. (ft.com)
Financial Projections
Despite generating $3.7 billion in revenue last year, OpenAI does not expect to achieve positive cash flow until 2029 due to significant costs associated with developing advanced AI systems, including expenses for chips, data centers, and talent acquisition. (reuters.com)
Recent OpenAI Developments:
You can just use print(response.output_text)
to see the collected user output.
Continued inability to use the model in the file, and you may need to contact OpenAI through the platform site’s “help” to have it provisioned correctly.