Linear
Prerequisites
export LINEAR_API_KEY="LINEAR_API_KEY"Example
from bitca.agent import Agent
from bitca.tools.linear_tools import LinearTool
agent = 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")
Toolkit Params
Parameter
Type
Default
Description
Toolkit Functions
Function
Description
Last updated