Test
Request
curl --location --request POST 'https://publicapi.xenioo.com/llm/test' \
--header 'Authorization: Bearer <BOT_AUTH_TOKEN>' \
--header 'Content-Type: application/json'
--data-raw '{
"Text":"<USER PROMPT>" ,
"SplitParagraphs": <BOOLEAN> ,
"ThreadId": "<THREAD ID>" ,
}'Response
{
"ThreadId": "acd0c03a-f91b-4189-a5b6-39e95cd794d2",
"Usage": {
"PromptTokens": 1149,
"CompletionTokens": 24,
"Total": 1173
},
"Paragraphs": [
"I am an AI assistant designed to help and provide information to users. How can I assist you today?"
],
"Elapsed": 0.7142745,
"Failed": false
}
```Response Codes
Last updated