This is an automated email from the ASF dual-hosted git repository.
skrawcz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/burr.git
The following commit(s) were added to refs/heads/main by this push:
new 77c85e7b Update OpenAI model in deep researcher example
77c85e7b is described below
commit 77c85e7b48575011b509cb7de181ee5ed6b8357e
Author: preethamk88 <[email protected]>
AuthorDate: Sun Jan 11 22:42:25 2026 +0530
Update OpenAI model in deep researcher example
---
examples/deep-researcher/application.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/deep-researcher/application.py
b/examples/deep-researcher/application.py
index a87bdc3c..9547998b 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