Skip to content

Commit 91824b9

Browse files
committed
Merge branch 'main' into clean-dockerfiles-and-entrypoints
2 parents f843477 + dea41e9 commit 91824b9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+12802
-8965
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- 'main'
7+
- "main"
88
pull_request:
99
paths:
1010
- ".github/workflows/build.yaml"
@@ -17,7 +17,7 @@ on:
1717
- "rust-toolchain.toml"
1818
- "Dockerfile"
1919
branches:
20-
- 'main'
20+
- "main"
2121

2222
jobs:
2323
tests:
@@ -38,6 +38,7 @@ jobs:
3838
env:
3939
SCCACHE_GHA_ENABLED: "true"
4040
RUSTC_WRAPPER: "sccache"
41+
HF_TOKEN: ${{ secrets.HF_HUB_READ_TOKEN }}
4142
run: |
4243
sudo apt-get update && sudo apt-get install protobuf-compiler -y
4344
cargo test --profile=release-debug

Cargo.lock

Lines changed: 112 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ default-members = [
2222
resolver = "2"
2323

2424
[workspace.package]
25-
version = "1.8.0"
25+
version = "1.8.3"
2626
edition = "2021"
2727
authors = ["Olivier Dehaene", "Nicolas Patry", "Alvaro Bartolome"]
2828
homepage = "https://github.com/huggingface/text-embeddings-inference"
@@ -42,13 +42,13 @@ serde_json = "1.0"
4242
thiserror = "1.0"
4343
rand = "0.9"
4444
serial_test = "2.0.0"
45-
cudarc = { version = "0.13" , features =["cuda-12020"], default-features = false}
46-
intel-mkl-src = { version = "0.8"}
45+
cudarc = { version = "0.13", features =["cuda-12020"], default-features = false }
46+
intel-mkl-src = { version = "0.8", default-features = false }
4747
candle = { version = "0.8", package = "candle-core" }
48-
candle-nn = { version = "0.8" }
48+
candle-nn = { version = "0.8" }
4949
candle-transformers = { version = "0.8" }
5050
candle-flash-attn = { version = "0.8" }
51-
candle-cublaslt= { version = "0.0.1" }
51+
candle-cublaslt = { version = "0.0.1" }
5252
candle-layer-norm = { version = "0.0.1" }
5353
candle-rotary = { version = "0.0.1" }
5454
candle-flash-attn-v1 = { version = "0.0.1" }

0 commit comments

Comments
 (0)