赞
踩
今天使用 LangChain 调用 Qwen,出现报错:
pydantic.errors.PydanticUserError: If you use
@root_validator
with pre=False (the default) you MUST specifyskip_on_failure=True
. Note that@root_validator
is deprecated and should be replaced with@model_validator
.
检查 key 是没问题的,搜索发现:
https://github.com/langchain-ai/langchain/issues/9409
建议:对 pydantic 降级;使用后解决了我的问题
pip install pydantic==1.10.9
再次之前,我的 pydantic 版本为 2.6.3
使用库出现这些兼容问题,挺让人烦躁的;自己做库的话,最好多考虑这些问题。
伊织 2024-03-19(二)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。