Documentation Index
Fetch the complete documentation index at: https://docs.appliedai.club/llms.txt
Use this file to discover all available pages before exploring further.
Working with Templates
Templates help you standardize your extraction process and save time when processing similar documents repeatedly.
Creating Templates
Set Up Fields
Use the Schema Builder to define your extraction fields:{
"fields": [
{
"name": "invoice_number",
"type": "string",
"description": "Invoice number usually found in top right"
},
{
"name": "total_amount",
"type": "number",
"description": "Total amount including taxes"
}
]
}
Add Descriptions
For each field, provide:
- Clear, specific field names
- Detailed descriptions
- Expected data types
Save Template
- Click “Save as Template”
- Enter template name
- Add optional description
- Choose visibility (private/team)