Skip to content

Commit

Permalink
Update src/components/InteractiveTutorial/MdxPages/HybridSearch.mdx
Browse files Browse the repository at this point in the history
Co-authored-by: Kacper Łukawski <[email protected]>
  • Loading branch information
davidmyriel and kacperlukawski authored Sep 16, 2024
1 parent 9f76653 commit 54279bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/InteractiveTutorial/MdxPages/HybridSearch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ PUT /collections/hybrid_search/points
```

```json withRunButton=true
POST /collections/{collection_name}/points/query
POST /collections/hybrid_search/points/query
{
"prefetch": [
{
"query": {
"indices": [1, 42], // <┐
"values": [0.22, 0.8] // <┴─sparse vector
},
"using": "sparse",
"using": "keywords",
"limit": 20
},
{
"query": [0.01, 0.45, 0.67, 0.89], // <-- dense vector
"using": "dense",
"using": "",
"limit": 20
}
],
Expand Down

0 comments on commit 54279bc

Please sign in to comment.