ingest_file
Add documents to your local vector database for semantic search. Supports PDF, DOCX, TXT, and Markdown files to build searchable knowledge bases.
Instructions
Ingest a document file (PDF, DOCX, TXT, MD) into the vector database for semantic search. File path must be an absolute path. Supports re-ingestion to update existing documents.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute path to the file to ingest. Example: "/Users/user/documents/manual.pdf" |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Absolute path to the file to ingest. Example: \"/Users/user/documents/manual.pdf\"",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}