add_file
Add files to a RAG system for document retrieval, supporting PDF, DOCX, TXT, MD, CSV, and JSON formats to enable semantic search and information access.
Instructions
Add a file to the RAG system for document retrieval
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file to add to the RAG system |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the file to add to the RAG system",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}