Skip to content

Commit 38b5a89

Browse files
committed
feat(grzesiu): use text-davinci-001 engine
1 parent db522ee commit 38b5a89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/grzesiu.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const grzesiu: Command = {
2626
const username = (msg.member?.displayName || msg.author.username).trim().split(/\s/)[0];
2727
const prompt = await generateGrzesiuPrompt(username, args.join(' '));
2828

29-
// const engine = 'text-davinci-001';
30-
const engine = 'text-babbage-001';
29+
const engine = 'text-davinci-001';
30+
// const engine = 'text-babbage-001';
3131
const response = await openai.createCompletion(engine, {
3232
prompt,
3333
temperature: 1,

0 commit comments

Comments
 (0)