fix: Fix OpenAI batch embedding

This commit is contained in:
Hwang In Tak
2024-09-26 20:39:40 +09:00
parent be41994d40
commit a4bc0b2829
3 changed files with 3 additions and 7 deletions

View File

@@ -16,8 +16,6 @@ class MilvusClient:
self.client = Client(uri=MILVUS_URI)
def _result_to_get_result(self, result) -> GetResult:
print(result)
ids = []
documents = []
metadatas = []
@@ -45,8 +43,6 @@ class MilvusClient:
)
def _result_to_search_result(self, result) -> SearchResult:
print(result)
ids = []
distances = []
documents = []