Authorization: Bearer ********************{ "model": "gpt-3.5-turbo-instruct", "prompt": "sample text,", "max_tokens": 30, "temperature": 0 }curl --location '/v1/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "model": "gpt-3.5-turbo-instruct", "prompt": "sample text,", "max_tokens": 30, "temperature": 0 }'{ "id": "cmpl-ByvHP6AWeB1L5vWZSPNHsB12sU9db", "object": "text_completion", "created": 1753859563, "model": "gpt-3.5-turbo-instruct", "choices": [ { "index": 0, "logprobs": null, "finish_reason": "length", "text": "sample text,sample text,sample text" } ], "usage": { "prompt_tokens": 3, "completion_tokens": 30, "total_tokens": 33 } }