POST
/
retrieve
/
chunks
curl --request POST \
  --url http://localhost:8000/retrieve/chunks \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>",
  "filters": {},
  "k": 4,
  "min_score": 0,
  "use_reranking": true,
  "use_colpali": true,
  "graph_name": "<string>",
  "hop_depth": 2,
  "include_paths": true
}'
[
  {
    "content": "<string>",
    "score": 123,
    "document_id": "<string>",
    "chunk_number": 123,
    "metadata": {},
    "content_type": "<string>",
    "filename": "<string>",
    "download_url": "<string>"
  }
]

Headers

authorization
string

Body

application/json

Base retrieve request model

query
string
required
Minimum length: 1
filters
object | null
k
integer
default:4
Required range: x > 0
min_score
number
default:0
use_reranking
boolean | null
use_colpali
boolean | null
graph_name
string | null

Name of the graph to use for knowledge graph-enhanced retrieval

hop_depth
integer | null
default:1

Number of relationship hops to traverse in the graph

Required range: 1 <= x <= 3
include_paths
boolean | null
default:false

Whether to include relationship paths in the response

Response

200
application/json
Successful Response
content
string
required
score
number
required
document_id
string
required
chunk_number
integer
required
metadata
object
required
content_type
string
required
filename
string | null
download_url
string | null