Skip to content

Commit 475d22d

Browse files
authored
Apply suggestions from code review
Co-authored-by: Prashanth Rao <35005448+prrao87@users.noreply.github.com>
1 parent 29c617e commit 475d22d

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

docs/integrations/embedding/superlinked.mdx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ sidebarTitle: Superlinked
88
## Installation
99

1010
<CodeGroup>
11-
```bash Python
1211
pip install sie-lancedb
1312
```
1413
15-
```bash TypeScript
1614
npm install @superlinked/sie-lancedb @lancedb/lancedb
1715
```
1816
</CodeGroup>
@@ -35,7 +33,6 @@ Supported parameters on `.create()`:
3533

3634
## Usage
3735

38-
```python
3936
import lancedb
4037
from lancedb.embeddings import get_registry
4138
from lancedb.pydantic import LanceModel, Vector
@@ -68,7 +65,6 @@ LanceDB handles embedding generation for both inserts and queries automatically,
6865
6966
`SIEReranker` plugs into LanceDB's hybrid search pipeline. It uses SIE's cross-encoder `score()` to rerank combined vector + full-text search results. You need a full-text search index on the column first:
7067
71-
```python
7268
from sie_lancedb import SIEReranker
7369
7470
# Create FTS index for hybrid search
@@ -91,7 +87,6 @@ The reranker also works with pure vector or pure FTS search via `.rerank()`.
9187

9288
`SIEMultiVectorEmbeddingFunction` (registered as `"sie-multivector"`) works with LanceDB's native `MultiVector` type and MaxSim scoring for ColBERT and ColPali models:
9389

94-
```python
9590
from lancedb.pydantic import MultiVector
9691

9792
sie_colbert = get_registry().get("sie-multivector").create(

0 commit comments

Comments
 (0)