chromadb-admin icon indicating copy to clipboard operation
chromadb-admin copied to clipboard

API update to V2

Open ramonduraes opened this issue 9 months ago • 4 comments

I would like to suggest updating to the chroma api /v2.

ramonduraes avatar May 21 '25 18:05 ramonduraes

Hi @ramonduraes,

Are you running with the Docker Hub image or local source code?

If you're using the Docker Hub version, I've just pushed a new image. Could you please give it a try?

flanker avatar May 31 '25 00:05 flanker

Hi @flanker

I'm under the impression that you're using port 3001 internally and 3000 publicly? 2025-06-03 06:05:14 2025-06-03 06:05:14 > [email protected] start 2025-06-03 06:05:14 > next start -p 3001 2025-06-03 06:05:14 2025-06-03 06:05:17 ▲ Next.js 14.2.3 2025-06-03 06:05:17 - Location: http://localhost:3001 2025-06-03 06:05:17 2025-06-03 06:05:17 ✓ Starting... 2025-06-03 06:05:18 ✓ Ready in 2.7s

The application didn't load. I also found the image a bit big.

Thanks

ramonduraes avatar Jun 03 '25 09:06 ramonduraes

The image appears to be built for arm64 rather than amd64 - or, there's no amd64 build on https://hub.docker.com/r/fengzhichao/chromadb-admin/tags . The local build works ok.

ckuethe avatar Jun 13 '25 02:06 ckuethe

Hi @ckuethe @ramonduraes are there any updates on this? am having the same issue. The admin UI seems its hardcoded to use v1 API endpoints, but ChromaDB server v1.0.0+ has deprecated v1 API entirely and we cant afford to use older chroma versions.

Image

Example API Migration

// Old v1 API call fetch(${apiUrl}/api/v1/collections)

// New v2 API call
fetch(${apiUrl}/api/v2/tenants/default/collections)

thanks

AssahBismarkabah avatar Sep 26 '25 13:09 AssahBismarkabah