reindex_vector_database
Reindex vector database with optimized configurations to improve search performance and resolve slow query issues. Automatically detects or manually selects profiles for small, medium, or large datasets.
Instructions
使用优化配置重新索引向量数据库。 使用场景:
更改配置文件
搜索速度非常慢
希望针对特定数据库大小进行优化
存在持续的性能问题
参数: profile: 配置文件('small', 'medium', 'large', 'auto')。 'auto' 会自动检测最佳配置文件
返回: 有关重新索引过程的信息。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| profile | No | auto |
Input Schema (JSON Schema)
{
"properties": {
"profile": {
"default": "auto",
"title": "Profile",
"type": "string"
}
},
"type": "object"
}