From 54e5c08e39cb3a6d7349078dd00cbb6fbb36b595 Mon Sep 17 00:00:00 2001 From: Mohammad Amin Date: Thu, 12 Dec 2024 13:45:12 +0330 Subject: [PATCH] feat: using the gpt-4o-mini instead of gpt3.5-turbo! it's cheaper and have a better performance. --- subquery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subquery.py b/subquery.py index 99cdf92..f34b8c2 100644 --- a/subquery.py +++ b/subquery.py @@ -200,7 +200,7 @@ def query_multiple_source( ) embed_model = CohereEmbedding() - llm = OpenAI("gpt-3.5-turbo") + llm = OpenAI("gpt-4o-mini") Settings.embed_model = embed_model Settings.llm = llm