o3-deep-research
OpenAI logo

O3 Deep Research

o3-deep-research
OpenAI
Only supported through requests to the v1/responses interface. o3-deep-research is OpenAI most advanced model for deep research, designed to tackle complex, multi-step research tasks. It can search and synthesize information from across the internet as well as from your own data—brought in through MCP connectors.

Pricing

PricingCache ReadImage GenerationWeb Search
$10.000$40.000
$2.5/M tokens-$0.01/request

Input Modalities

    Try this model

    Python
    import os
    from openai import OpenAI
    
    client = OpenAI(
        api_key=os.environ["AIHUBMIX_API_KEY"],
        base_url="https://aihubmix.com/v1",
    )
    
    response = client.chat.completions.create(
        model="o3-deep-research",
        messages=[
          {
            "role": "user",
            "content": "Hello, how are you?"
          }
        ],
        max_tokens=1024,
        stream=False,
    )
    
    print(response.choices[0].message.content)

    Frequently asked questions

    What is o3-deep-research?

    Only supported through requests to the v1/responses interface. o3-deep-research is OpenAI most advanced model for deep research, designed to tackle complex, multi-step research tasks. It can search and synthesize information from across the internet as well as from your own data—brought in through MCP connectors.