Use for AI SDK for Python async-generator tools, streaming tool output, subagent tools, PartialToolCallResult events, and custom tool aggregation.
npx skills add https://github.com/vercel-labs/seal --skill ai-python-streaming-tools
Use async-generator tools when a tool should show progress while it runs.
A streaming tool yields many values, but the agent still needs one final tool
result for the next model turn. The return type tells the SDK how to combine
those yields.
Use ai.StreamingTextTool when yielded strings should concatenate into the
final tool result.
@ai.tool
async def draft_reply(topic: str) -> ai.StreamingTextTool:
yield "Checking records for "
yield topic
The caller sees each yield as ai.events.PartialToolCallResult. The model later
sees one string: "Checking records for {topic}".
Use ai.StreamingStatusTool[T] when the last yielded value is the tool result.
@ai.tool
async def ask_mothership(question: str) -> ai.StreamingStatusTool[str]:
yield "connecting"
yield "transmitting"
yield f"The mothership says: {question} is under review."
The progress values stream to the caller. The model sees only the final yielded
value.
Use ai.SubAgentTool when a tool runs another agent and streams its events.
@ai.tool
async def research(topic: str) -> ai.SubAgentTool:
researcher = ai.Agent()
messages = [
ai.system_message("Research briefly."),
ai.user_message(topic),
]
async with researcher.run(model, messages) as stream:
async for event in stream:
yield event
The parent caller receives nested events as PartialToolCallResult.value.
async with agent.run(model, messages) as stream:
async for event in stream:
if isinstance(event, ai.events.PartialToolCallResult):
if isinstance(event.value, ai.events.TextDelta):
yield event.value.chunk
SubAgentTool stores a typed MessageBundle as the tool result. The parent
model sees the nested agent's final assistant text, not the raw bundle.
When saving history, keep the typed message data:
data = message.model_dump(mode="json")
message = ai.messages.Message.model_validate(data)
Do not stringify MessageBundle or drop result_kind.
Prefer the aliases above. If you need custom aggregation, use either
@ai.tool(aggregator=...) or an Annotated return type. Do not use both.
from collections.abc import AsyncGenerator
from typing import Annotated
JoinedLines = Annotated[
AsyncGenerator[str],
ai.agents.Aggregate(ai.agents.ConcatAggregator, delim="\n"),
]
@ai.tool
async def outline(topic: str) -> JoinedLines:
yield f"# {topic}"
yield "- first point"
Custom aggregators implement ai.events.Aggregator.
ai.events.PartialToolCallResult.ToolRunner events flowing; otherwise partialtool output will not reach the caller.
Take vercel-labs/ai-python-streaming-tools from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.