Skip to content
New issue

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

[HANDS-ON BUG] Unit 3| Creating a RAG Tool for Guest Stories | Step 2 | langgraph #410

Open
polisdi opened this issue Apr 4, 2025 · 0 comments

Comments

@polisdi
Copy link

polisdi commented Apr 4, 2025

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]])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant