Files
qdrant-client/tools/full_structures.json
George 04845eeba0 new: remove default hybrid search for query_points with fastembed (#735)
* new: remove default hybrid search for query_points with fastembed

* tmp: disable query extension for vector input, etc
2024-08-12 16:14:32 +02:00

54 lines
1.1 KiB
JSON

{
"components": {
"schemas": {
"VectorStruct": {
"anyOf": [
{
"$ref": "#/components/schemas/Document"
}
]
},
"BatchVectorStruct": {
"anyOf": [
{
"type": "array",
"items": {
"$ref": "#/components/schemas/Document"
}
}
]
},
"VectorInput": {
"anyOf": [
{
"$ref": "#/components/schemas/Document"
}
]
},
"Vector": {
"anyOf": [
{
"$ref": "#/components/schemas/Document"
}
]
},
"Document": {
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Text document to be embedded by FastEmbed or Cloud inference server"
},
"model": {
"type": "string",
"description": "Model name to be used for embedding computation"
}
}
}
}
}
}