Skip to content

Commit ae41e9f

Browse files
Change kattgpt tokenizer model to gpt-5
1 parent bcec494 commit ae41e9f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Kattbot/NotificationHandlers/KattGptMessageHandler.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ public class KattGptMessageHandler : BaseNotificationHandler,
2424
INotificationHandler<MessageCreatedNotification>
2525
{
2626
private const string ChatGptModel = "gpt-5";
27-
private const string TokenizerModel = "gpt-4o"; // TODO update to gpt5 when available
27+
private const string TokenizerModel = "gpt-5";
2828
private const string DefaultReasoningEffort = "minimal";
2929

30-
private const float DefaultTemperature = 1.1f;
3130
private const int MaxTotalTokens = 24_576;
3231
private const int MaxTokensToGenerate = 960; // Roughly the limit of 2 Discord messages
3332
private const string MessageSplitToken = "[cont.] ";

0 commit comments

Comments
 (0)