Module 5 C1 M5 Graded Assignment specifying tools fail

When I specify the tools for this assignment as mentioned in the directions
Creating Tools List:

  • Create a list of tools for use, such as research_tools.arxiv_search_tool, research_tools.tavily_search_tool, and research_tools.wikipedia_search_tool.

    and as further instructed by the comments below
    Save all of your available tools in the tools list. These can be found in the research_tools module.

    # You can identify each tool in your list like this: 
    # research_tools.<name_of_tool>, where <name_of_tool> is replaced with the function name of the tool.
    

    I repeatedly get the following error

    :magnifying_glass_tilted_left: Research Agent

    Failed test case: research_agent raised ValueError (return_messages=False): One or more tools is not callable.
    Expected: no exception
    Got: One or more tools is not callable

    Any thoughts/suggestions on why this error and ways to address/fix.

Hi skr1125,

This is likely due to some confusion in the naming of the tools mentioned in the instructions.

The instructions for creating the prompt mention ‘arxiv_tool’, ‘tavily_tool’, and ‘wikipedia_tool’, whereas the instructions to create the tools list mention ‘research_tools.arxiv_search_tool’, ‘research_tools.tavily_search_tool’, and ‘research_tools.wikipedia_search_tool’.

Make sure to follow the instructions carefully.

I hope this helps.