Agent class follow the same structure as the OpenAI Agents SDK Agent. However, there are a few advanced parameters that require more explanation.
Parallel Tool Calls
Controls whether tools execute in parallel or sequentially for a given agent.one_call_at_a_time = True in the tool’s ToolConfig. See Advanced Tool Configuration.
File Search
If yourfiles_folder ends with _vs_<vector_store_id>, Agency Swarm automatically associates files with that Vector Store and adds FileSearchTool to the Agent. The include_search_results behavior can be toggled via the Agent’s include_search_results flag.
Web Search Sources
include_web_search_sources=True (default), WebSearchTool calls include source URLs.
Set include_web_search_sources=False to skip this.
System Reminders
Usesystem_reminders when you want the agent to see a short reminder at a supported trigger, without writing hooks.
EveryNToolCalls counts local function tools and hosted tools (such as WebSearchTool and FileSearchTool) toward the same threshold.
If the reminder needs agency context, pass a callable:
Use
system_reminders for normal reminders. Use hooks only when you need custom lifecycle behavior beyond these built-in triggers.Creating your first agent with
system_reminders installs a process-wide boundary around Runner.run, Runner.run_sync, Runner.run_streamed, and RunState serialization. That boundary is what keeps reminders out of saved history when you call Runner directly instead of going through an Agency. It stays in place for the rest of the process and applies to every agent in it, including SDK agents without reminders. Agents that never use system_reminders leave the SDK Runner untouched.Conversation starters cache
Conversation starters are the suggested prompts you see in the chat UI. When enabled, cache can instantly replay the first reply without calling the LLM.- The UI shows the starter prompt “Support: I need help with billing”.
- The FastAPI
/get_metadataresponse exposes starters asconversationStarters. - With
cache_conversation_starters=True, the first plain-text user message can replay a saved reply when it exactly matches a configured starter.
Streaming the cached reply includes events for text, tool calls, reasoning, and handoffs.
additional_instructions, context_override, or hooks_override skip replay and call the LLM.
Cache files live under
AGENCY_SWARM_CHATS_DIR (defaults to .agency_swarm) in starter_cache/.
In production, point AGENCY_SWARM_CHATS_DIR at persistent storage to keep instant replies across restarts.Output Validation
Useoutput_guardrails on the Agent to validate outputs. See the detailed guide: Guardrails.
Few‑Shot Examples
You can include few‑shot examples ininstructions as plain text or pass message history to get_response / get_response_stream.