Skip to content

Commit 3854f85

Browse files
Merge pull request #157 from NotJoeMartinez/change_model_to_4o
changed model to 4o
2 parents a5267a8 + fa9fbb4 commit 3854f85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

yt_fts/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def get_expand_context_query(self, messages: list) -> str:
189189
def get_completion(self, messages: list) -> str:
190190
try:
191191
response = self.openai_client.chat.completions.create(
192-
model="gpt-4",
192+
model="gpt-4o",
193193
messages=messages,
194194
temperature=0,
195195
max_tokens=2000,

yt_fts/yt_fts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def embeddings(channel, openai_api_key, interval=10):
368368
@cli.command(
369369
name="llm",
370370
help="""
371-
Interactive LLM chat bot RAG bot, needs to be run on a channel with
371+
Interactive LLM/RAG chat bot, needs to be run on a channel with
372372
Embeddings.
373373
"""
374374
)

0 commit comments

Comments
 (0)