read_file
Retrieve and read text files stored in Proton Drive by specifying the file path. Enables access to file content for integration with workflows or data processing systems.
Instructions
Read a text file from Proton Drive
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | File path relative to Proton Drive root |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "File path relative to Proton Drive root",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}