more workers
Browse files
start.sh
CHANGED
@@ -1,7 +1,14 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
bash -c "$SSH_TUNNEL_CMD_1" &
|
|
|
|
|
|
|
|
|
4 |
|
5 |
python -m starvector.serve.vllm_api_gradio.controller --host 0.0.0.0 --port 10000 &
|
6 |
python -m starvector.serve.vllm_api_gradio.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port 40000 --worker http://localhost:40000 --model-name /home/agent_h/data/starvector-1b-im2svg --vllm-base-url http://localhost:8000 &
|
|
|
|
|
|
|
7 |
python -m starvector.serve.vllm_api_gradio.gradio_web_server --controller http://localhost:10000 --model-list-mode reload --port 7860
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
bash -c "$SSH_TUNNEL_CMD_1" &
|
4 |
+
bash -c "$SSH_TUNNEL_CMD_2" &
|
5 |
+
bash -c "$SSH_TUNNEL_CMD_3" &
|
6 |
+
bash -c "$SSH_TUNNEL_CMD_4" &
|
7 |
+
|
8 |
|
9 |
python -m starvector.serve.vllm_api_gradio.controller --host 0.0.0.0 --port 10000 &
|
10 |
python -m starvector.serve.vllm_api_gradio.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port 40000 --worker http://localhost:40000 --model-name /home/agent_h/data/starvector-1b-im2svg --vllm-base-url http://localhost:8000 &
|
11 |
+
python -m starvector.serve.vllm_api_gradio.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port 40001 --worker http://localhost:40001 --model-name /home/agent_h/data/starvector-1b-im2svg --vllm-base-url http://localhost:8001 &
|
12 |
+
python -m starvector.serve.vllm_api_gradio.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port 40002 --worker http://localhost:40002 --model-name /home/agent_h/data/starvector-1b-im2svg --vllm-base-url http://localhost:8002 &
|
13 |
+
python -m starvector.serve.vllm_api_gradio.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port 40003 --worker http://localhost:40003 --model-name /home/agent_h/data/starvector-1b-im2svg --vllm-base-url http://localhost:8003 &
|
14 |
python -m starvector.serve.vllm_api_gradio.gradio_web_server --controller http://localhost:10000 --model-list-mode reload --port 7860
|