Skip to content

Commit e1652f7

Browse files
committed
feat(grzesiu): use text-babbage-001 engine
1 parent 465a7e9 commit e1652f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/commands/grzesiu.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ const grzesiu: Command = {
2525
const username = (msg.member?.displayName || msg.author.username).trim().split(/\s/)[0];
2626
const prompt = await generateGrzesiuPrompt(username, args.join(' '));
2727

28-
const response = await openai.createCompletion('text-davinci-001', {
28+
// const engine = 'text-davinci-001';
29+
const engine = 'text-babbage-001';
30+
const response = await openai.createCompletion(engine, {
2931
prompt,
3032
temperature: 1,
3133
max_tokens: RESPONSE_TOKENS,

0 commit comments

Comments
 (0)