Orchestrator
A partial indexation mean all diff documents (created, updated or deleted documents) from the KB will be reindexed/deleted from KAI index. This process can take several times depending on the size of your KB or the complexity/size of involved documents
Successful Response
POST /api/orchestrator/differential-indexation HTTP/1.1
Host:
Accept: */*
Successful Response
{
"response": true
}if the document is deleted from KB it will delete on the index. And if the document is updated from the KB, it will reindex the document.
Successful Response
Validation Error
POST /api/orchestrator/reindex-document HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"id": "text"
}{
"response": true
}Launch a task to retry reindexing document who is in parsing error state
Successful Response
POST /api/orchestrator/retry-documents-parsing-error HTTP/1.1
Host:
Accept: */*
Successful Response
{
"response": true
}Count background tasks. It will count in progress tasks and tasks who is waiting to be launched
Successful Response
POST /api/orchestrator/count-back-tasks HTTP/1.1
Host:
Accept: */*
Successful Response
{
"response": {
"ANY_ADDITIONAL_PROPERTY": 1
}
}Count background tasks. It will count in progress tasks and tasks who is waiting to be launched for a document
Successful Response
Validation Error
POST /api/orchestrator/count-tasks-for-doc HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"id": "text"
}{
"response": {
"ANY_ADDITIONAL_PROPERTY": 1
}
}Last updated