Skip to content

Instantly share code, notes, and snippets.

@iceener
Created April 28, 2023 08:54
Show Gist options
  • Save iceener/48c00fd01bac75a6151aa2ae5d5b61b8 to your computer and use it in GitHub Desktop.
Save iceener/48c00fd01bac75a6151aa2ae5d5b61b8 to your computer and use it in GitHub Desktop.
CURL GPT-3
curl -s <https://api.openai.com/v1/completions> \\
-H "Content-Type: application/json" \\
-H "Authorization: Bearer $OPENAI_API_KEY" \\
-d '{
"model": "text-davinci-003",
"prompt": "Hello",
"temperature": 0.7,
"max_tokens": 256,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0
}' | jq ".choices[].text"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment