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
For the AI Agent Langgraph version the code needs update.
Extracting text function "extract_text" tries to return "\n\n".join([doc.text for doc in results[:3]]), and it gives an error in tool call:
{'tools': {'messages': [ToolMessage(content='Error: AttributeError("'Document' object has no attribute 'text'")\n Please fix your mistakes.', name='guest_info_retriever', id='c34e52a8-3ba2-437b-a0f3-dadfe1fa99e1', tool_call_id='0', status='error')]}}
To allow the tool to return data, next change will help (doc.text replace by doc.page_content):
return "\n\n".join([doc.text for doc in results[:3]]) -> return "\n\n".join([doc.page_content for doc in results[:3]])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For the AI Agent Langgraph version the code needs update.
Extracting text function "extract_text" tries to return "\n\n".join([doc.text for doc in results[:3]]), and it gives an error in tool call:
{'tools': {'messages': [ToolMessage(content='Error: AttributeError("'Document' object has no attribute 'text'")\n Please fix your mistakes.', name='guest_info_retriever', id='c34e52a8-3ba2-437b-a0f3-dadfe1fa99e1', tool_call_id='0', status='error')]}}
To allow the tool to return data, next change will help (doc.text replace by doc.page_content):
return "\n\n".join([doc.text for doc in results[:3]]) -> return "\n\n".join([doc.page_content for doc in results[:3]])
The text was updated successfully, but these errors were encountered: