Teams
Multi-agent teams for content pipelines, editorial workflows, and intelligent routing.
Teams that coordinate work across agents. Each example demonstrates parallel research, editorial pipelines, or intelligent routing.
1from kern.agent import Agent2from kern.models.openai import OpenAIResponses3from kern.team import Team4from kern.tools.hackernews import HackerNewsTools5from kern.tools.yfinance import YFinanceTools67researcher = Agent(name="Researcher", tools=[HackerNewsTools()])8analyst = Agent(name="Analyst", tools=[YFinanceTools(stock_price=True)])910team = Team(11 name="Research Team",12 mode="coordinate",13 members=[researcher, analyst],14 model=OpenAIResponses(id="gpt-5.2"),15)1617team.print_response("What tech trends are driving NVDA?", stream=True)Content & Research
Teams that gather, synthesize, and produce content.
pen-nib
Content Team
Clean researcher → writer pipeline. The canonical team pattern.
newspaper
News Agency
Editorial workflow: search → write → edit with quality control.
fire
HackerNews Team
Content curation with structured output.
Support & Routing
Teams that classify, route, and coordinate responses.