LLM Get Document
A system task to retrieve the content of the document provided and use it for further data processing using AI tasks.
Definitions
{
"name": "get_document_task",
"taskReferenceName": "get_document_task_ref",
"inputParameters": {
"url": "${workflow.input.url}",
"mediaType": "application/pdf"
},
"type": "GET_DOCUMENT"
}
Input Parameters
Attribute | Description |
---|---|
url | Provide the URL of the document to be retrieved. Check out our documentation on how to pass parameters to tasks. |
mediaType | Select the media type of the file to be retrieved. Currently, supported media types include:
|
Examples
- UI
- JSON Example
- Add task type LLM Get Document.
- Provide the document URL and choose the media type.
{
"name": "get_document_task",
"taskReferenceName": "get_document_task_ref",
"inputParameters": {
"url": "${workflow.input.url}",
"mediaType": "application/pdf"
},
"type": "GET_DOCUMENT"
}