mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-08-04 17:11:01 -05:00
* new: remove default hybrid search for query_points with fastembed * tmp: disable query extension for vector input, etc
23 lines
487 B
JSON
23 lines
487 B
JSON
{
|
|
"components": {
|
|
"schemas": {
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|