Completion

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
}'
Language
Credentials
Bearer
URL
Click Try It! to start a request and see the response here!