From 02cd2ba5dfdeb70c1aca8ed9ea72cd554dbb1a60 Mon Sep 17 00:00:00 2001 From: mtuszowski Date: Wed, 6 Nov 2024 20:28:33 +0100 Subject: [PATCH] fx --- bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index bd67ff9..24ed222 100644 --- a/bot.py +++ b/bot.py @@ -218,7 +218,8 @@ openAIClient = openai.AsyncOpenAI(api_key=openai.api_key) saint_harlot_friend = openAIClient.beta.assistants.create( name="Bane", instructions="You are a personal horoscope assistant to Saint Harlot", - tools=[{"type":"file_search"}]) + tools=[{"type":"file_search"}], + model="gpt-4o") saint_harlot_thread = openAIClient.beta.threads.create()