import os
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
)
response = client.v2.documents.classify(
document={
"id": "id",
"file_name": "fileName",
},
label_schemas=[{
"label": "label"
}],
)
print(response.async_result_id){
"asyncResultId": "<string>"
}Initiates an asynchronous document classification process based on provided schemas. Returns an ID to track the async result.
import os
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
)
response = client.v2.documents.classify(
document={
"id": "id",
"file_name": "fileName",
},
label_schemas=[{
"label": "label"
}],
)
print(response.async_result_id){
"asyncResultId": "<string>"
}Accepted. Document classification process initiated.
Accepted. Document classification process initiated.
The ID to track the asynchronous classification task.