chore: update categories embedding server URL #5
No reviewers
Labels
No labels
bug
chore
documentation
enhancement
feature
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
shoppy/shoppy-index-configuration!5
Loading…
Reference in a new issue
No description provided.
Delete branch "chore/2026-09-10/update-categories-embedding-url"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What & why
The
mxbaiembedder in the categories index config still pointed at the retired LM Studio embedding host10.1.1.173. The products index config (shoppy-products.json:66), the README (line 42), anddocs/research-brief-meilisearch-search-relevance.mdall already reference the current host10.1.5.170.This repoints the categories embedder at the same host so both indexes embed against the live server. Without it, any re-embedding of the categories index (or query-time hybrid search against it) would fail to reach the embedding server, since the pipeline depends on that endpoint for re-embedding.
Per-file breakdown
Modified
shoppy-categories.json— in theembedders.mxbaiblock, changedurlfromhttp://10.1.1.173:1234/v1/embeddingstohttp://10.1.5.170:1234/v1/embeddings. No other settings touched (model, template, request/response shape unchanged).Out of scope (noted, not changed here)
README.md:53still documents the old10.1.1.173URL for the categories index (line 42 is already updated), so the README remains internally inconsistent. Left for a separate docs change.Verification
grepconfirmsshoppy-categories.jsonandshoppy-products.jsonnow agree on the embedding endpoint.