Skip to content

Commit 4759996

Browse files
committed
Document Sync by Tina
1 parent 032e27b commit 4759996

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

docs/stable/cli/getting_started.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# TODO

docs/stable/dev/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"label": "Developer Guide",
3-
"position": 5,
3+
"position": 6,
44
"link": {
55
"type": "generated-index"
66
}

docs/stable/getting_started/quickstart.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,26 @@ ray start --address=localhost:6379 --num-cpus=4 --num-gpus=2 \
1919
--resources='{"worker_node": 1, "worker_id_0": 1}' --block
2020
```
2121

22-
Now, start the ServerlessLLM server by running the following command in a new terminal:
22+
Now, let’s start ServerlessLLM.
23+
24+
First, start ServerlessLLM Serve (i.e., `sllm-serve`)
25+
2326
```bash
2427
conda activate sllm
2528
sllm-serve start
2629
```
2730

31+
Next start ServerlessLLM Store server. This server will use `./models` as the storage path by default.
32+
33+
```bash
34+
conda activate sllm
35+
sllm_store_server
36+
```
37+
38+
Everything is set!
39+
2840
Next, let's deploy a model to the ServerlessLLM server. You can deploy a model by running the following command:
41+
2942
```bash
3043
conda activate sllm
3144
sllm-cli deploy --model facebook/opt-1.3b

docs/stable/store/_category_.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "ServerlessLLM Store",
3+
"position": 5,
4+
"link": {
5+
"type": "generated-index"
6+
}
7+
}
File renamed without changes.

0 commit comments

Comments
 (0)