dvc890's picture
Upload 30 files
f16d50c
raw
history blame contribute delete
357 Bytes
### Create chat completion
POST {{baseUrl}}/imitate/v1/chat/completions
Content-Type: application/json
Authorization: Bearer {{accessToken}}
{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello!"
}
],
"stream": true
}