read
Extracts file content from storage services like S3, Azure Blob Storage, and Google Cloud Storage using a specified URI, returning the content or error details.
Instructions
Read file content from OpenDAL service
Args:
uri: resource URI, e.g. mys3://path/to/file
Returns:
File content or error information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"uri": {
"title": "Uri",
"type": "string"
}
},
"required": [
"uri"
],
"title": "readArguments",
"type": "object"
}