How to use Chroma to store and query vector embeddings

This page summarizes the projects mentioned and recommended in the original post on dev.to

Scout Monitoring - Free Django app performance insights with Scout Monitoring
Get Scout setup in minutes, and let us sweat the small stuff. A couple lines in settings.py is all you need to start monitoring your apps. Sign up for our free tier today.
www.scoutapm.com
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • example-chroma-vector-embeddings

    Example project for using chroma to store and query vector embeddings

  • Chroma is an open-source embedding database designed to store and query vector embeddings efficiently, enhancing Large Language Models (LLMs) by providing relevant context to user inquiries. In this tutorial, I will explain how to use Chroma in persistent server mode using a custom embedding model within an example Python project. The companion code repository for this blog post is available on GitHub.

  • chroma

    the AI-native open-source embedding database

  • Create a new project directory for our example project. Next, we need to clone the Chroma repository to get started. At the root of your project directory let's clone Chroma into it:

  • Scout Monitoring

    Free Django app performance insights with Scout Monitoring. Get Scout setup in minutes, and let us sweat the small stuff. A couple lines in settings.py is all you need to start monitoring your apps. Sign up for our free tier today.

    Scout Monitoring logo
  • uvicorn

    An ASGI web server, for Python. 🦄

  • This will set up Chroma and run it as a server with uvicorn, making port 8000 accessible outside the net docker network. The command also mounts a persistent docker volume for Chroma's database, found at chroma/chroma from your project's root.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • How to Deploy a Fast API Application to a Kubernetes Cluster using Podman and Minikube

    2 projects | dev.to | 22 Apr 2024
  • LangChain, Python, and Heroku

    4 projects | dev.to | 18 Mar 2024
  • Fun with Avatars: Crafting the core engine | Part. 1

    4 projects | dev.to | 20 Jan 2024
  • Ask HN: Where to Host a FastAPI App

    2 projects | news.ycombinator.com | 18 Oct 2023
  • Unresolved Memory Management Issues in FastAPI/Starlette/Uvicorn/Python During High-Load Scenarios

    2 projects | /r/learnpython | 1 Sep 2023