Skip to content

Commit 8472f42

Browse files
committed
Taskr - update ai helper llm model
1 parent ad9f60d commit 8472f42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

taskr/commands/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ async def ai_task(self, ctx: commands.Context, *, request: str):
120120
try:
121121
client = openai.AsyncClient(api_key=openai_token)
122122
response = await client.beta.chat.completions.parse(
123-
model="gpt-5",
123+
model="gpt-5.1",
124124
messages=messages,
125125
response_format=CommandCreationResponse,
126126
reasoning_effort="medium",

taskr/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Taskr(Commands, commands.Cog, metaclass=CompositeMetaClass):
2626
"""Schedule bot commands with ease"""
2727

2828
__author__ = "[vertyco](https://github.com/vertyco/vrt-cogs)"
29-
__version__ = "1.0.9"
29+
__version__ = "1.0.10"
3030

3131
def __init__(self, bot: Red):
3232
super().__init__()

0 commit comments

Comments
 (0)