Skip to content

Commit 47e9b4a

Browse files
committed
Fix missing LLM model
1 parent 4336749 commit 47e9b4a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

plugins/chat.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,7 @@ async def hey(self, ctx: commands.Context):
340340
for iterations_left in range(self.ITERATION_LIMIT - 1, -1, -1):
341341
async with ctx.typing():
342342
iteration_result = await aclient.chat.completions.create(
343+
model="gpt-4o",
343344
messages=prompt_messages,
344345
user=str(ctx.author.id),
345346
tools=self._all_available_commands_as_tools if iterations_left else NOT_GIVEN,

0 commit comments

Comments
 (0)