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

11 lines
226 B

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