Skip to content

Instantly share code, notes, and snippets.

@FANMixco
Created March 4, 2024 17:29
Show Gist options
  • Save FANMixco/5d6b9d746cc801eb93da6ac898b020c3 to your computer and use it in GitHub Desktop.
Save FANMixco/5d6b9d746cc801eb93da6ac898b020c3 to your computer and use it in GitHub Desktop.
OpenAI JSON sample for gpt-3.5-turbo-instruct
{
"choices": [
{
"text": "Generated text goes here."
}
],
"completion": {
"model": "gpt-3.5-turbo-instruct",
"prompt": "Your input prompt goes here.",
"temperature": 0.7,
"top_p": 0.9,
"nucleus_sampling": true,
"stop": "\n"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment