The following agent will use Linear API to search for issues in a project for a specific user.
cookbook/tools/linear_tools.py
from phi.agent import Agentfrom phi.tools.linear_tools import LinearToolagent = Agent( name="Linear Tool Agent", tools=[LinearTool()], show_tool_calls=True, markdown=True,)agent.print_response("Show all the issues assigned to user id: 12021")