File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Enforce LF line endings in the repo (Biome requires LF)
2+ * text =auto eol =lf
Original file line number Diff line number Diff line change @@ -269,10 +269,10 @@ jobs:
269269 BRANCH="release/v${VERSION}"
270270
271271 # Check if there are version bump changes to push
272- if git diff --quiet HEAD; then
272+ if git diff --quiet HEAD -- package.json package-lock.json CHANGELOG.md DEPENDENCIES.md ; then
273273 echo "No version bump commit to push — skipping PR"
274274 else
275- git add -A
275+ git add package.json package-lock.json CHANGELOG.md DEPENDENCIES.md
276276 git commit -m "chore: release v${VERSION}"
277277 git push origin "HEAD:refs/heads/${BRANCH}"
278278 gh pr create \
Original file line number Diff line number Diff line change @@ -265,10 +265,10 @@ A single trailing semicolon is ignored (falls back to single-query mode). The `-
265265
266266| Flag | Model | Dimensions | Size | License | Notes |
267267| ---| ---| ---| ---| ---| ---|
268- | ` minilm ` (default) | all-MiniLM-L6-v2 | 384 | ~ 23 MB | Apache-2.0 | Fastest, good for quick iteration |
268+ | ` minilm ` | all-MiniLM-L6-v2 | 384 | ~ 23 MB | Apache-2.0 | Fastest, good for quick iteration |
269269| ` jina-small ` | jina-embeddings-v2-small-en | 512 | ~ 33 MB | Apache-2.0 | Better quality, still small |
270270| ` jina-base ` | jina-embeddings-v2-base-en | 768 | ~ 137 MB | Apache-2.0 | High quality, 8192 token context |
271- | ` jina-code ` | jina-embeddings-v2-base-code | 768 | ~ 137 MB | Apache-2.0 | ** Best for code search** , trained on code+text |
271+ | ` jina-code ` (default) | jina-embeddings-v2-base-code | 768 | ~ 137 MB | Apache-2.0 | ** Best for code search** , trained on code+text |
272272| ` nomic ` | nomic-embed-text-v1 | 768 | ~ 137 MB | Apache-2.0 | Good quality, 8192 context |
273273| ` nomic-v1.5 ` | nomic-embed-text-v1.5 | 768 | ~ 137 MB | Apache-2.0 | Improved nomic, Matryoshka dimensions |
274274| ` bge-large ` | bge-large-en-v1.5 | 1024 | ~ 335 MB | MIT | Best general retrieval, top MTEB scores |
You can’t perform that action at this time.
0 commit comments