An open API service indexing awesome lists of open source software.

https://github.com/flanker/chromadb-admin

Admin UI for Chroma embedding database built with Next.js
https://github.com/flanker/chromadb-admin

chroma chromadb embeddings openai vector-database

Last synced: 6 months ago
JSON representation

Admin UI for Chroma embedding database built with Next.js

Awesome Lists containing this project

README

          

# Chromadb Admin

Admin UI for the Chroma embedding database, built with Next.js

![screely-1696786774071](https://github.com/flanker/chromadb-admin/assets/109811/6d4369d4-d10c-49f7-8342-89849f271dbe)

## Links:

* GitHub Repo: [https://github.com/flanker/chromadb-admin](https://github.com/flanker/chromadb-admin)
* Chroma Official Website [https://docs.trychroma.com](https://docs.trychroma.com)

## Authentication Support

image

## Run Locally

First, start the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

THen, open [http://localhost:3000](http://localhost:3000) in your browser to see the app.

## Run with Docker

Run

```bash
docker run -p 3000:3000 fengzhichao/chromadb-admin
```

and visit https://localhost:3000⁠ in the browser.

*NOTE*: Use `http://host.docker.internal:8000` for the connection string if you want to connect to a ChromaDB instance running locally.

## Build and Run with Docker locally

Build the Docker image:

```bash
docker build -t chromadb-admin .
```

Run the Docker container:

```bash
docker run -p 3000:3000 chromadb-admin
```

## Note

This is NOT an official Chroma project.

This project is licensed under the terms of the MIT license.