describe_index
Retrieve detailed information about a specific index in a table within the Baidu Vector Database. Input the table and index name to access index configuration and structure.
Instructions
Describe index details in the Mochow instance.
Args:
table_name (str): Name of the table.
index_name (str): Name of the index to describe.
Returns:
str: A string containing the details of the index.
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": "describe_indexArguments",
"type": "object"
}