LangChain-Chatchat本地运行调用在线模型API
LangChain-Chatchat本地运行调用在线模型API
cmyang1. 说明
最轻模式本地部署方案,该模式的配置方式与常规模式相同,但无需安装 torch
等重依赖,通过在线API实现 LLM 和 Ebeddings 相关功能,适合没有显卡的电脑使用。
2. 步骤
2.1 下载代码
从Github拉取代码:https://github.com/chatchat-space/Langchain-Chatchat.git
2.2 修改
问题记录
No module named ‘configs.basic_config’
运行报错:ModuleNotFoundError: No module named ‘configs.basic_config’
执行:python copy_config_example.py
No module named ‘pwd’
执行python startup.py -a –lite报错:
1 | (Langchain-Chatchat) PS D:\code\source\Langchain-Chatchat> python startup.py -a --lite |
https://github.com/chatchat-space/Langchain-Chatchat/issues/3004
原因:需要在Linux环境下执行,Windows没有这个命令
解决:pip install langchain-community==0.0.19
或者在requirements.txt添加langchain-community==0.0.19
并执行pip install -r requirements.txt
utils.py[line:40] - ERROR: TypeError: Caught exception: object of type ‘NoneType’ has no len()
https://github.com/chatchat-space/Langchain-Chatchat/issues/2062
requirements.txt添加dashscope==1.15.0
ValueError: ‘text-embedding-v1’ is not in list
https://github.com/chatchat-space/Langchain-Chatchat/issues/3450