Last active
December 5, 2022 22:56
-
-
Save davila7/c775bc6d55e2983c1f7431e4ec0fda80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const completion = await openai.createCompletion({ | |
| model: "text-davinci-003", | |
| prompt: one_shot_text, | |
| temperature: 0, | |
| max_tokens: 60, | |
| top_p: 1.0, | |
| frequency_penalty: 0.5, | |
| presence_penalty: 0.0, | |
| stop: ["Bot:"], | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment