Ingestion

List Ingested

GET

Lists already ingested Documents including their Document ID and metadata.

Those IDs can be used to filter the context used to create responses in /chat/completions, /completions, and /chunks APIs.

Response

This endpoint returns an object
object
any
model
any
data
list of objects
GET
1curl /v1/ingest/list
Response
1{
2 "object": {
3 "key": "value"
4 },
5 "model": {
6 "key": "value"
7 },
8 "data": [
9 {
10 "object": {
11 "key": "value"
12 },
13 "doc_id": "doc_id"
14 }
15 ]
16}