create_project
Initialize a new vector-based RAG project for semantic search and contextual conversations within your Calibre ebook library, organizing books for enhanced content retrieval.
Instructions
Create a new RAG project for vector-based book search
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Project description | |
name | Yes | Project name (alphanumeric and underscores only) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Project description",
"type": "string"
},
"name": {
"description": "Project name (alphanumeric and underscores only)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}