rag_add_document
Add documents to a RAG corpus for AI-powered search and retrieval, enabling intelligent querying of local files, notes, and web content.
Instructions
Добавить документ в RAG корпус
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| content | Yes | Содержимое документа | |
| title | Yes | Заголовок документа | |
| uri | Yes | URI документа | 
Input Schema (JSON Schema)
{
  "properties": {
    "content": {
      "description": "Содержимое документа",
      "type": "string"
    },
    "title": {
      "description": "Заголовок документа",
      "type": "string"
    },
    "uri": {
      "description": "URI документа",
      "type": "string"
    }
  },
  "required": [
    "uri",
    "content",
    "title"
  ],
  "type": "object"
}