add_books_to_project
Add books to a RAG project for vectorization and semantic search, enabling contextual retrieval from your Calibre ebook library.
Instructions
Add books to a RAG project for vectorization and context search
Input Schema
Name | Required | Description | Default |
---|---|---|---|
book_ids | Yes | Array of book IDs to add to the project | |
project_name | Yes | Name of the project |
Input Schema (JSON Schema)
{
"properties": {
"book_ids": {
"description": "Array of book IDs to add to the project",
"items": {
"type": "integer"
},
"type": "array"
},
"project_name": {
"description": "Name of the project",
"type": "string"
}
},
"required": [
"project_name",
"book_ids"
],
"type": "object"
}