Query parameters

  • query string Required
  • context string | null
  • context_blocks array[integer]

    Default value is [] (empty).

  • retrieve_mode string

    Values are feature, embedding, or reasoning.

Responses

  • 200 application/json

    Successful Response

    Hide response attribute Show response attribute object
    • message string Required
  • 422 application/json

    Validation Error

    Hide response attribute Show response attribute object
    • detail array[object]
      Hide detail attributes Show detail attributes object
      • loc array[string | integer] Required
      • msg string Required
      • type string Required
GET /sink/rag
curl \
 --request GET 'http://api.example.com/sink/rag?query=string'
Response examples (200)
{
  "message": "string"
}
Response examples (422)
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}