We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
存在bug, async_client报错: client=self.client.embeddings, async_client=self.async_client.embeddings) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'embeddings'
async_client不一定非要实例化,请增加一个判空处理。
The text was updated successfully, but these errors were encountered:
我们排查了一下这个as_langchain的方法在当前版本下属于冗余的函数,请问您现在是在测试案例中碰到的这个bug还是您实际使用到了这个方法。如果是前者的话我们后续会删除相关测试案例和该方法,后者的话您能描述一下您是在什么场景下用到的这个方法吗,合适的话我们会考虑后续如何保留该方法
Sorry, something went wrong.
我是在实际使用中碰到的这个问题,当前处理是增加了一个判断async_client是否为空。建议保留。
No branches or pull requests
存在bug,
async_client报错:
client=self.client.embeddings, async_client=self.async_client.embeddings)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'embeddings'
async_client不一定非要实例化,请增加一个判空处理。
The text was updated successfully, but these errors were encountered: