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
+
"default": [],
6613
+
"type": "array",
6614
+
"items": {
6615
+
"$ref": "#/components/schemas/CollectionWarning"
6616
+
}
6613
6617
},
6614
6618
"indexed_vectors_count": {
6615
6619
"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 +6682,17 @@
6678
6682
}
6679
6683
]
6680
6684
},
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
6685
+
"CollectionWarning": {
6686
+
"type": "object",
6687
+
"required": [
6688
+
"message"
6689
+
],
6690
+
"properties": {
6691
+
"message": {
6692
+
"description": "Warning message",
6693
+
"type": "string"
6703
6694
}
6704
-
]
6695
+
}
6705
6696
},
6706
6697
"CollectionConfig": {
6707
6698
"description": "Information about the collection configuration",
0 commit comments