You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I fixed it by changing one part of the code, for the route_research function on the graph.py from line 135 to 142
replace if state.research_loop_count <= configurable.max_web_research_loops:
with if state.research_loop_count <= int(configurable.max_web_research_loops):
I fixed it by changing one part of the code, for the route_research function on the graph.py from line 135 to 142
replace if state.research_loop_count <= configurable.max_web_research_loops: with if state.research_loop_count <= int(configurable.max_web_research_loops):
reflect_on_summary
TypeError("'<=' not supported between instances of 'int' and 'str'")
The text was updated successfully, but these errors were encountered: