For AI agents: The documentation index is at https://docs.digitalocean.com/llms.txt. Markdown versions of pages use the same URL with index.html.md in place of the HTML page (for example, append index.html.md to the directory path instead of opening the HTML document).
Usage
client.genai.get_indexing_job(uuid="\"123e4567-e89b-12d3-a456-426614174000\"")
Returns JSONRaises HttpResponseError
Description
To get status of an indexing Job for a knowledge base, send a GET request to /v2/gen-ai/indexing_jobs/{uuid}.
Parameters
uuid string required
Indexing job id
Response Example
Show Response Example
{
"job": {
"completed_datasources": 123,
"created_at": "2023-01-01T00:00:00Z",
"data_source_jobs": [],
"data_source_uuids": [
"example string"
],
"finished_at": "2023-01-01T00:00:00Z",
"is_report_available": true,
"knowledge_base_uuid": "123e4567-e89b-12d3-a456-426614174000",
"phase": "BATCH_JOB_PHASE_UNKNOWN",
"started_at": "2023-01-01T00:00:00Z",
"status": "INDEX_JOB_STATUS_UNKNOWN",
"tokens": 123,
"total_datasources": 123,
"total_tokens": "12345",
"updated_at": "2023-01-01T00:00:00Z",
"uuid": "123e4567-e89b-12d3-a456-426614174000"
}
}
See /v2/gen-ai/indexing_jobs/{uuid} in the API reference for additional detail on responses, headers, parameters, and more.