read_content
Retrieve raw file content from your local knowledge base to access stored information directly from Markdown files in your semantic graph system.
Instructions
Read a file's raw content by path or permalink
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ||
project | No |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"title": "Path",
"type": "string"
},
"project": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project"
}
},
"required": [
"path"
],
"type": "object"
}