Completions

Completion

post

Follows the exact same API spec as OpenAI's Completions API https://platform.openai.com/docs/api-reference/completions

curl -X POST http://localhost:4000/v1/completions 
-H "Content-Type: application/json" 
-H "Authorization: Bearer sk-1234" 
-d '{
    "model": "gpt-3.5-turbo-instruct",
    "prompt": "Once upon a time",
    "max_tokens": 50,
    "temperature": 0.7
}'
Authorizations
Path parameters
modelany ofrequired

Responses
curl -L \
  --request POST \
  --url '/engines/{model}/completions' \
  --header 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'

No Content