chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-01-09 22:27:53 +04:00
parent 3c986adeda
commit 5990c51ab5
13 changed files with 83 additions and 25 deletions

View File

@@ -157,7 +157,11 @@ class MilvusClient(VectorDBBase):
collection.insert(entities)
def search(
self, collection_name: str, vectors: List[List[float]], filter: Optional[Dict] = None, limit: int = 10
self,
collection_name: str,
vectors: List[List[float]],
filter: Optional[Dict] = None,
limit: int = 10,
) -> Optional[SearchResult]:
if not vectors:
return None