rebuild_vector_index
Reconstruct the vector index for a specified table to optimize search performance and accuracy in the Baidu Vector Database MCP Server.
Instructions
Rebuild the vector index in the Mochow instance.
Args:
    table_name (str): Name of the table.
    index_name (str): Name of the vector index to rebuild.
Returns:
    str: A message indicating the success of index rebuild initiation.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| index_name | Yes | ||
| table_name | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "index_name": {
      "title": "Index Name",
      "type": "string"
    },
    "table_name": {
      "title": "Table Name",
      "type": "string"
    }
  },
  "required": [
    "table_name",
    "index_name"
  ],
  "title": "rebuild_vector_indexArguments",
  "type": "object"
}