Skip to content

Instantly share code, notes, and snippets.

@leduqueiroz
Created May 26, 2023 04:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leduqueiroz/dce1fe292202124f2f2de155f1dbf3cb to your computer and use it in GitHub Desktop.
Save leduqueiroz/dce1fe292202124f2f2de155f1dbf3cb to your computer and use it in GitHub Desktop.
postman + openapi
curl --location 'https://api.openai.com/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: {APIKEY} \
--data '{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "system",
"content": "{TEMPLATE COM ENCODED}"
},
{
"role": "assistant",
"content": "{EXEMPLO GERADO NO BROWSER}"
},
{
"role": "assistant",
"content": "{EXEMPLO GERADO NO BROWSER}"
},
...
{
"role": "user",
"content": "{SUA SOLICITAÇÃO}"
}
]
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment