Skip to content

Commit 7931c27

Browse files
committed
fix: increased max_tokens
1 parent 2c24c0e commit 7931c27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Actions from '@cocreate/actions'
1111
const apiKey = localStorage.getItem('openAiKey');
1212
const apiUrl = 'https://api.openai.com/v1/chat/completions';
1313
const model = 'gpt-3.5-turbo'
14-
const max_tokens = 1024;
14+
const max_tokens = 3300;
1515
const temperature = 0.6;
1616
const n = 1;
1717
const stop = '###STOP###';

0 commit comments

Comments
 (0)