Last active
December 15, 2022 19:56
-
-
Save davila7/f7649910566e85c8e707d7acbcd20f69 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 zero_shot_text = 'Write a function in Javascript'; | |
| async function main() { | |
| const completion = await openai.createCompletion({ | |
| model: "text-davinci-003", | |
| prompt: zero_shot_text, | |
| temperature: 0.3, | |
| max_tokens: 100, | |
| top_p: 1.0, | |
| frequency_penalty: 0.5, | |
| presence_penalty: 0.0, | |
| stop: ["END", '.'], | |
| }); | |
| console.log(completion.data.choices[0].text) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment