Skip to content

Commit 2d1776f

Browse files
docs: add http feature
1 parent 7efa697 commit 2d1776f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -392,9 +392,9 @@ Then run:
392392

393393
```shell
394394
# On x86
395-
cargo install --path router -F candle -F mkl
395+
cargo install --path router -F mkl
396396
# On M1 or M2
397-
cargo install --path router -F candle -F metal
397+
cargo install --path router -F metal
398398
```
399399

400400
You can now launch Text Embeddings Inference on CPU with:
@@ -429,10 +429,10 @@ Then run:
429429
# This can take a while as we need to compile a lot of cuda kernels
430430

431431
# On Turing GPUs (T4, RTX 2000 series ... )
432-
cargo install --path router -F candle-cuda-turing --no-default-features
432+
cargo install --path router -F candle-cuda-turing -F http --no-default-features
433433

434434
# On Ampere and Hopper
435-
cargo install --path router -F candle-cuda --no-default-features
435+
cargo install --path router -F candle-cuda -F http --no-default-features
436436
```
437437

438438
You can now launch Text Embeddings Inference on GPU with:

docs/source/en/local_cpu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ Depending on your machine's architecture, run one of the following commands:
3333
### For x86 Machines
3434

3535
```shell
36-
cargo install --path router -F candle -F mkl
36+
cargo install --path router -F mkl
3737
```
3838

3939
### For M1 or M2 Machines
4040

4141
```shell
42-
cargo install --path router -F candle -F accelerate
42+
cargo install --path router -F metal
4343
```
4444

4545
## Step 3: Launch Text Embeddings Inference

docs/source/en/local_gpu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ This step can take a while as we need to compile a lot of cuda kernels.
4444
### For Turing GPUs (T4, RTX 2000 series ... )
4545

4646
```shell
47-
cargo install --path router -F candle-cuda-turing --no-default-features
47+
cargo install --path router -F candle-cuda-turing -F http --no-default-features
4848
```
4949

5050
### For Ampere and Hopper
5151

5252
```shell
53-
cargo install --path router -F candle-cuda --no-default-features
53+
cargo install --path router -F candle-cuda -F http --no-default-features
5454
```
5555

5656
## Step 4: Launch Text Embeddings Inference

docs/source/en/local_metal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
3030
## Step 2: Install with Metal support
3131

3232
```shell
33-
cargo install --path router -F candle -F metal
33+
cargo install --path router -F metal
3434
```
3535

3636
## Step 3: Launch Text Embeddings Inference

0 commit comments

Comments
 (0)