Router
Ocr
Extracts text content while maintaining document structure and hierarchyfrom orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.router.ocr(model="Golf", document={
"type": "document_url",
"document_url": "https://fond-pants.net/",
})
# Handle response
print(res)
Show Parameters
Show Parameters
Show Response
Show Response
ID of the model used for OCR.