LangChain
vLLM 也可以通过 LangChain 使用。
要安装LangChain,请运行
要在单个或多个GPU上运行推理,请使用langchain
中的VLLM
类。
from langchain_community.llms import VLLM
llm = VLLM(model="mosaicml/mpt-7b",
trust_remote_code=True, # mandatory for hf models
max_new_tokens=128,
top_k=10,
top_p=0.95,
temperature=0.8,
# tensor_parallel_size=... # for distributed inference
)
print(llm("What is the capital of France ?"))
更多详情请参阅此Tutorial。