rag_search
Search your personal document corpus to find relevant information from notes, documents, and web pages using natural language queries.
Instructions
Поиск по личному корпусу документов
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| limit | No | Максимальное количество результатов | |
| query | Yes | Поисковый запрос | 
Input Schema (JSON Schema)
{
  "properties": {
    "limit": {
      "default": 5,
      "description": "Максимальное количество результатов",
      "type": "number"
    },
    "query": {
      "description": "Поисковый запрос",
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}