mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-04 08:35:40 +00:00
757 B
757 B
vLLM
vLLM is a fast and easy-to-use library for LLM inference and serving.
Running vLLM
Installing Dependencies
vLLM is an optional dependency in DB-GPT, and you can manually install it using the following command:
pip install -e ".[vllm]"
Modifying the Configuration File
Next, you can directly modify your .env
file to enable vllm.
LLM_MODEL=vicuna-13b-v1.5
MODEL_TYPE=vllm
You can view the models supported by vLLM here
Then you can run it according to Run.