analyze_bioimpedance_pdf_base64
Analyze bioimpedance PDF data to extract health metrics and generate personalized recommendations from base64-encoded documents.
Instructions
Analyze a bioimpedance PDF document from base64-encoded data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base64Data | Yes | ||
| patientId | No |
Input Schema (JSON Schema)
{
"properties": {
"base64Data": {
"_def": {
"checks": [],
"coerce": false,
"description": "Base64-encoded PDF data",
"typeName": "ZodString"
},
"~standard": {
"vendor": "zod",
"version": 1
}
},
"patientId": {
"_def": {
"description": "Optional patient ID for reference",
"innerType": {
"_def": {
"checks": [],
"coerce": false,
"typeName": "ZodString"
},
"~standard": {
"vendor": "zod",
"version": 1
}
},
"typeName": "ZodOptional"
},
"~standard": {
"vendor": "zod",
"version": 1
}
}
},
"required": [
"base64Data"
],
"type": "object"
}