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.
swarms/playground/memory/chroma_usage.py

12 lines
231 B

from swarms.memory import chroma
chromadbcl = chroma.ChromaClient()
1 year ago
chromadbcl.add_vectors(
["This is a document", "BONSAIIIIIII", "the walking dead"]
)
results = chromadbcl.search_vectors("zombie", limit=1)
print(results)