xqxls

Results 4 issues of xqxls

linux环境下,对Qwen1.5以上模型使用vllm加速推理,需要vllm版本在0.3.0以上,我看vllm==0.3.3用的人比较多,有没有vllm==0.3.3对应的requirements.txt文件,目前用vllm==0.3.3会有各种python包依赖冲突

bug

比如,在输入框输入“打开百度首页”,然后自动新开一个浏览器页面,并且打开百度的首页。 这是我的实现: ```python from langchain.prompts import PromptTemplate from langchain.chains import LLMMathChain from server.agent import model_container from pydantic import BaseModel, Field PROMPT = PromptTemplate( input_variables=["url"], template="新开一个谷歌浏览器窗口,打开{url}这个url对应的网站" ) def myfunc(url: str): webbrowser.open("https://www.baidu.com")...

enhancement

2024-05-10 15:14:44 | INFO | stdout | 本地vllm加速模型 /home/xqxls/git/Langchain-Chatchat/venv/lib/python3.11/site-packages/pydantic/_internal/_config.py:334: UserWarning: Valid config keys have changed in V2: * 'schema_extra' has been renamed to 'json_schema_extra' warnings.warn(message, UserWarning) /home/xqxls/git/Langchain-Chatchat/venv/lib/python3.11/site-packages/pydantic/_internal/_fields.py:160: UserWarning: Field "model_name"...

bug