Create a model response

POST /api/security_ai_assistant/chat/complete

Create a model response for the given chat conversation.

application/json; Elastic-Api-Version=2023-10-31

Body Required

Responses

  • 200 application/octet-stream; Elastic-Api-Version=2023-10-31

    Indicates a successful call.

  • 400 application/json; Elastic-Api-Version=2023-10-31

    Generic Error

    Hide response attributes Show response attributes object
POST /api/security_ai_assistant/chat/complete
curl \
 -X POST http://KIBANA_HOST:5601/api/security_ai_assistant/chat/complete \
 -H "Content-Type: application/json; Elastic-Api-Version=2023-10-31"
Request examples
{
  "connectorId": "string",
  "conversationId": "string",
  "isStream": true,
  "langSmithApiKey": "string",
  "langSmithProject": "string",
  "messages": [
    {
      "content": "string",
      "data": {},
      "fields_to_anonymize": [
        "string"
      ],
      "role": "system"
    }
  ],
  "model": "string",
  "persist": true,
  "promptId": "string",
  "responseLanguage": "string"
}
Response examples (400)
{
  "error": "string",
  "message": "string",
  "statusCode": 42.0
}