describe_vector_database
Use the describe vector database operation to get summary statistics for the vector database.
Describe the vector database
summary = client.describe_vector_database()
print(summary)
Return type DatabaseSummaryResponse
Returns JSON response with database-level statistics including total tables, models, and vectors. Example response:
{
"total_tables": 48,
"total_vectors": 1353894,
"total_models": 9
}