Skip to content

Commit 6aead63

Browse files
committed
chore: hybrid lint
1 parent 2df0789 commit 6aead63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

semantic_router/routers/hybrid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def fit(
307307
Xq_s: List[SparseEmbedding] = []
308308
for i in tqdm(range(0, len(X), batch_size), desc="Generating embeddings"):
309309
emb_d = np.array(self.encoder(X[i : i + batch_size]))
310-
# TODO JB: for some reason the sparse encoder is receiving a tuple
310+
# TODO JB: for some reason the sparse encoder is receiving a tuple
311311
# like `("Hello",)`
312312
emb_s = self.sparse_encoder(X[i : i + batch_size])
313313
Xq_d.extend(emb_d)

0 commit comments

Comments
 (0)