API update to V2
I would like to suggest updating to the chroma api /v2.
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?
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
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.
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.
Example API Migration
// Old v1 API call
fetch(${apiUrl}/api/v1/collections)
// New v2 API call
fetch(${apiUrl}/api/v2/tenants/default/collections)
thanks