๐Ÿ”‘ Getting Started

Chroma is an AI-native open-source vector database. It comes with everything you need to get started built in, and runs on your machine. A hosted version is coming soon!

1. Install#

Command Line

2. Create a Chroma Client#

python

3. Create a collection#

Collections are where you'll store your embeddings, documents, and any additional metadata. You can create a collection with a name:

python

4. Add some text documents to the collection#

Chroma will store your text and handle embedding and indexing automatically. You can also customize the embedding model.

python

5. Query the collection#

You can query the collection with a list of query texts, and Chroma will return the n most similar results. It's that easy!

python

6. Inspect Results#

From the above query - you can see that our query about hawaii is the semantically most similar to the document about pineapple. This, intuitively, makes sense!

javascript

7. Try it out yourself#

For example - what if we tried querying with "This is a document about florida"?

python

๐Ÿ“š Next steps#