diff --git a/examples/deep-researcher/application.py b/examples/deep-researcher/application.py index a87bdc3c1..9547998bd 100644 --- a/examples/deep-researcher/application.py +++ b/examples/deep-researcher/application.py @@ -68,7 +68,7 @@ def query_openai(system_instructions, human_message_content, stream=False): messages.append(system_message) messages.append(human_message) - response = client.chat.completions.create(model="gpt-4o", messages=messages, stream=stream) + response = client.chat.completions.create(model="gpt-4o-mini", messages=messages, stream=stream) content = response.choices[0].message.content return content