You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
231 B
12 lines
231 B
1 year ago
|
from swarms.memory import chroma
|
||
|
|
||
1 year ago
|
chromadbcl = chroma.ChromaClient()
|
||
1 year ago
|
|
||
1 year ago
|
chromadbcl.add_vectors(
|
||
|
["This is a document", "BONSAIIIIIII", "the walking dead"]
|
||
|
)
|
||
1 year ago
|
|
||
1 year ago
|
results = chromadbcl.search_vectors("zombie", limit=1)
|
||
1 year ago
|
|
||
|
print(results)
|