You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Warnings related to the collection",
6612
+
"type": "array",
6613
+
"items": {
6614
+
"$ref": "#/components/schemas/CollectionWarning"
6615
+
}
6613
6616
},
6614
6617
"indexed_vectors_count": {
6615
6618
"description": "Approximate number of indexed vectors in the collection. Indexed vectors in large segments are faster to query, as it is stored in a specialized vector index.",
@@ -6678,30 +6681,17 @@
6678
6681
}
6679
6682
]
6680
6683
},
6681
-
"ConfigurationStatus": {
6682
-
"description": "Current state of the collection",
6683
-
"oneOf": [
6684
-
{
6685
-
"description": "Configuration is valid",
6686
-
"type": "string",
6687
-
"enum": [
6688
-
"ok"
6689
-
]
6690
-
},
6691
-
{
6692
-
"description": "Configuration has warnings",
6693
-
"type": "object",
6694
-
"required": [
6695
-
"warning"
6696
-
],
6697
-
"properties": {
6698
-
"warning": {
6699
-
"type": "string"
6700
-
}
6701
-
},
6702
-
"additionalProperties": false
6684
+
"CollectionWarning": {
6685
+
"type": "object",
6686
+
"required": [
6687
+
"message"
6688
+
],
6689
+
"properties": {
6690
+
"message": {
6691
+
"description": "Warning message",
6692
+
"type": "string"
6703
6693
}
6704
-
]
6694
+
}
6705
6695
},
6706
6696
"CollectionConfig": {
6707
6697
"description": "Information about the collection configuration",
0 commit comments