Skip to content

Instantly share code, notes, and snippets.

@davila7
Created December 5, 2022 23:09
Show Gist options
  • Select an option

  • Save davila7/45de07ada516ce5d7bb1c90b4b79e9cb to your computer and use it in GitHub Desktop.

Select an option

Save davila7/45de07ada516ce5d7bb1c90b4b79e9cb to your computer and use it in GitHub Desktop.
const completion = await openai.createCompletion({
model: "code-cushman-001",
prompt: one_shot_text,
temperature: 0,
max_tokens: 100,
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