Hacker News
Example
from bitca.agent import Agent
from bitca.tools.hackernews import HackerNews
agent = Agent(
name="Hackernews Team",
tools=[HackerNews()],
show_tool_calls=True,
markdown=True,
)
agent.print_response(
"Write an engaging summary of the "
"users with the top 2 stories on hackernews. "
"Please mention the stories as well.",
)Toolkit Params
Parameter
Type
Default
Description
Toolkit Functions
Function
Description
Last updated