Skip to content

Retrieve

API Endpoint: POST /api/annapurna/{id}/retrieve

Summary

Retrieve relevant chunks with Annapurna retriever.

Request Parameters

Name In Type Required Description
id path string Yes ID of the retriever
retrieve_request body object Yes Query parameters for retrieval

Request Body

{
  "query": "string"
}

Example



Response (200)

{
  "results": [
    {
      "content": "string",
      "sourceUrl": "string"
    }
  ]
}