Skip to content

Instantly share code, notes, and snippets.

@davila7
Created December 6, 2022 00:36
Show Gist options
  • Select an option

  • Save davila7/5da741ea3ffe87ef4fc284180a4d15f3 to your computer and use it in GitHub Desktop.

Select an option

Save davila7/5da741ea3ffe87ef4fc284180a4d15f3 to your computer and use it in GitHub Desktop.
const completion = await openai.createCompletion({
model: "code-davinci-002",
prompt: one_shot_text,
temperature: 0,
max_tokens: 100,
top_p: 1.0,
frequency_penalty: 0.5,
presence_penalty: 0.0,
stop: ["Bot:", "Me:"],
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment