embedding email object

This commit is contained in:
tsukasa
2023-09-12 15:28:59 +08:00
parent ddc103af38
commit 8ac6065332
10 changed files with 155 additions and 42 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ import asyncio
import unittest
async def test_vector():
storage = ChromaVectorStore("", "test")
async def test_embedding_email():
storage = ChromaVectorStore("test")
await storage.insert([1, 2, 3], "test")
ids = await storage.query([1, 2, 3], 10)
print(ids)