Skip to content

Commit

Permalink
Update action.js
Browse files Browse the repository at this point in the history
increase max tokens to avoid truncating response
  • Loading branch information
jelster authored May 9, 2024
1 parent b95ccfa commit 989e402
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async function run() {
},
],
temperature: 1,
max_tokens: 256,
max_tokens: 4096,
top_p: 1,
frequency_penalty: 0,
presence_penalty: 0,
Expand All @@ -75,4 +75,4 @@ async function run() {
}
}

run();
run();

0 comments on commit 989e402

Please sign in to comment.