Sajjad313 's Collections

Tools

the spaces that are just tools to be used for LLM agents


  • Note You can use this tool with the following code snippet: ```python from smolagents import ToolCallingAgent, load_tool, InferenceClientModel get_datatime = load_tool("Sajjad313/get_datetime", trust_remote_code=True) llm = InferenceClientModel() agent = ToolCallingAgent(tools=[get_datatime], model=llm, max_steps=2) agent.run("what date is today?") ```