agent = initialize_agent(
tools + [time],
llm,
agent=AgentType.CHAT_ZERO_SHOT_REACT_DESCRIPTION,
handle_parsing_errors=True,
verbose = True)
Query for the agent above which has the custom tool : time from the course: “What will be the date a week from today”
Response: Threw an error : “ValueError: LLMMathChain._evaluate(”
2024-03-07 + 7
“) raised error: leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers (, line 1). Please try again with a valid numerical expression”
I’m not a mentor for that course, but based on the error message, I’d say the chat tool took the hyphens in the date 2024-03-07, and interpreted them as subtraction operators, but it threw an error because it did not like the combination 03 or 07. It seems to not handle leading zeros in number formats.