Python
from meibelai import Meibelai import os with Meibelai( api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""), ) as m_client: res = m_client.datasources.rag.get_reprocess_metadata_status(datasource_id="<id>") # Handle response print(res)
{ "total": 123, "completed": 123, "failed": 123 }
Successful Response
GetReprocessStatusResponse
Was this page helpful?