Skip to content

Commit

Permalink
feat: using the gpt-4o-mini instead of gpt3.5-turbo!
Browse files Browse the repository at this point in the history
it's cheaper and have a better performance.
  • Loading branch information
amindadgar committed Dec 12, 2024
1 parent 6e0f1f5 commit 54e5c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 54e5c08

Please sign in to comment.