2.4 Hyper Extract
The HyperExtract endpoint extracts text and labels from an image using the "HyperExtract" model. Credits are required and deducted upon successful extraction.
https://sdk.hypergpt.ai/hyperExtractheaders = {
"Authorization": "Bearer " + bearer_token
}
files = {
"file": (file.filename, file.file, file.content_type)
}
response = requests.post(
"https://sdk.hypergpt.ai/hyperExtract",
headers=headers,
files=files
)
return response.json()Last updated