We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
代码: #!/bin/bash
python -m fastchat.serve.controller --host 0.0.0.0 --port 2002 &
export CUDA_VISIBLE_DEVICES=1 python -m fastchat.serve.model_worker --model-path ./bge-large-zh-v1.5 --model-names gpt-4 --controller-address http://0.0.0.0:2002 &
python -m fastchat.serve.openai_api_server --host 0.0.0.0 --port 2003 --controller-address http://0.0.0.0:2002 &
The text was updated successfully, but these errors were encountered:
No branches or pull requests
代码:
#!/bin/bash
启动控制器
python -m fastchat.serve.controller --host 0.0.0.0 --port 2002 &
为模型设置环境变量并启动
export CUDA_VISIBLE_DEVICES=1
python -m fastchat.serve.model_worker --model-path ./bge-large-zh-v1.5 --model-names gpt-4 --controller-address http://0.0.0.0:2002 &
启动openai服务器
python -m fastchat.serve.openai_api_server --host 0.0.0.0 --port 2003 --controller-address http://0.0.0.0:2002 &
The text was updated successfully, but these errors were encountered: