Skip to content
Snippets Groups Projects
Unverified Commit 21c049b6 authored by James Briggs's avatar James Briggs
Browse files

fix: add sync param

parent c67c1351
Branches tolga/fix-function-call
Tags v0.0.43
No related merge requests found
[tool.poetry] [tool.poetry]
name = "semantic-router" name = "semantic-router"
version = "0.0.50" version = "0.0.51"
description = "Super fast semantic router for AI decision making" description = "Super fast semantic router for AI decision making"
authors = [ authors = [
"James Briggs <james@aurelio.ai>", "James Briggs <james@aurelio.ai>",
......
...@@ -165,8 +165,11 @@ class QdrantIndex(BaseIndex): ...@@ -165,8 +165,11 @@ class QdrantIndex(BaseIndex):
embeddings: List[List[float]], embeddings: List[List[float]],
routes: List[str], routes: List[str],
utterances: List[str], utterances: List[str],
sync: bool = False,
batch_size: int = DEFAULT_UPLOAD_BATCH_SIZE, batch_size: int = DEFAULT_UPLOAD_BATCH_SIZE,
): ):
if sync:
raise NotImplementedError("Sync add is not implemented for QdrantIndex")
self.dimensions = self.dimensions or len(embeddings[0]) self.dimensions = self.dimensions or len(embeddings[0])
self._init_collection() self._init_collection()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment