Landing.ai
Turn your documents and images into visual intelligence. LandingAI’s cutting-edge software platform makes computer vision easy for a wide range of applications across all industries.
Turn your documents and images into visual intelligence. LandingAI’s cutting-edge software platform makes computer vision easy for a wide range of applications across all industries.
Category: Document Management. Adds 1 action to a care flow.
What to configure
Set these once, on the extension in Awell Studio. An action fails at run time if a required setting is missing.
| Setting | Required | Notes |
|---|---|---|
| API key | Yes | — Stored as a secret. |
Actions
Landing.ai adds this action to a care flow. Add one to a step, then fill in its inputs.
Document extraction
Extract structured data from documents and images
This action can be previewed in Studio before you publish.
| Input | Type | Required | Description |
|---|---|---|---|
| File type | string | Yes | The type of file to extract data from One of: Image, PDF. |
| File URL | string | Yes | The URL of the file to extract data from |
| Fields schema | json | No | Defines the structure of the fields to extract from the document. Providing a schema is optional but strongly recommended, as it significantly improves the accuracy of the extracted data. |
Returns:
| Data point | Type |
|---|---|
chunks | json |
extractedDataBasedOnSchema | json |
extractedMetadata | json |
markdown | string |
Extract structured data from an image or PDF by providing a URL to the file. Please note that the file has to be publicly accessible. If you require enhanced security, we can also build custom connectors to access secure data stores such as Google Cloud Storage (GCS), AWS, and others. Please contact our customer support team to explore this option.
In most cases, you'll want to specify the "Fields schema", which allows you to define what data to extract and the desired output format. This schema must be written in JSON following a specific format.
We recommend creating the schema using Landing.ai’s playground, exporting it, and then copying it into Awell.
Example schema:
{
"type": "object",
"title": "Physician Referral Extraction Schema",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"date_of_birth",
"urgency",
"Referral reason"
],
"properties": {
"date_of_birth": {
"type": "string",
"format": "YYYY-MM-DD",
"description": "Date of birth of the patient"
},
"urgency": {
"type": "string",
"description": "Urgency of the referral"
},
"Referral reason": {
"type": "string",
"description": "Reason of the referral"
}
},
"description": "Schema for extracting high-value, form-like fields from a physician's referral markdown document."
}Setup and notes
Turn your documents and images into visual intelligence. LandingAI’s cutting-edge software platform makes computer vision easy for a wide range of applications across all industries.
Extension settings
To enable the extension, you must configure an API key. You can obtain this key from the Landing.ai platform.
Changelog
CHANGELOG
Where this page comes from
The settings, actions, inputs, outputs and webhooks above are generated from the
extension's own code, at @awell-health/awell-extensions v2.1.159. They match what the
platform actually does rather than a description of it.
Field-level detail also appears in Awell Studio when you configure the action. Something wrong or missing? Email support@awellhealth.com.