You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The UI (React) runs in its own container and shows the full pipeline: create library → ingest PDF → build index → search by text. Styling is inspired by Qdrant. The UI is built and served from Docker; no local Node/npm required.
The **default API image** includes only the `pdf`extra (small image). Use `embedder=cohere://` for ingest-pdf (set `COHERE_API_KEY` in `.env`). To include **Sentence Transformers** in the API image (larger, ~2GB+ for torch): `podman build --build-arg INSTALL_TRANSFORMER=1 -t vector-db-api .`. To add the **Image embedder**:`--build-arg INSTALL_EMBEDDING_EXTRAS=1`.
460
+
The **default API image** includes the `pdf`and **embedding-transformer** extras (pypdf + Sentence Transformers), so the UI can use Cohere or Sentence Transformers for ingest and search. Image is larger (~2GB for torch). Optional: add Image embedder with`--build-arg INSTALL_EMBEDDING_EXTRAS=1`.
458
461
459
462
### Local development (optional)
460
463
@@ -490,6 +493,7 @@ The API is REST-style. All IDs are UUIDs. Base URL when running locally: `http:/
0 commit comments