From 6523e8f2a74bf2cc561d096a86e58d2e8df385ef Mon Sep 17 00:00:00 2001 From: Merve Noyan Date: Thu, 10 Aug 2023 15:55:44 +0300 Subject: [PATCH] Update using_cli.md --- docs/source/basic_tutorials/using_cli.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/basic_tutorials/using_cli.md b/docs/source/basic_tutorials/using_cli.md index 072925b0..82c10e6b 100644 --- a/docs/source/basic_tutorials/using_cli.md +++ b/docs/source/basic_tutorials/using_cli.md @@ -10,19 +10,19 @@ text-generation-server download-weights MODEL_HUB_ID You can also use it to quantize models like below 👇 -```shell +```bash text-generation-server quantize MODEL_HUB_ID OUTPUT_DIR ``` You can use `text-generation-launcher` to serve models. -```shell +```bash text-generation-launcher --model-id MODEL_HUB_ID --port 8080 ``` There are many options and parameters you can pass to `text-generation-launcher`. The documentation for CLI is kept minimal and intended to rely on self-generating documentation, which can be found by running -```shell +```bash text-generation-launcher --help ```