Create a chat completion
Creates a completion for the chat message
post/chat/completions
Request body
Example request
{
"model": "internta-v02"
}Response
Successful response
Example response
{
"id": "chatcmpl-1753709210352",
"object": "chat.completion",
"created": 1753709210,
"model": "internta-v02",
"choices": [
{
"message": {
"role": "assistant",
"content": "Sure! Synthetic biology is an interdisciplinary field..."
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 100,
"completion_tokens": 10,
"total_tokens": 110
},
"system_fingerprint": "fp_2f57f81c11"
}