> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pawa-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Agents Handoff

> Learn how Pawa AI handles multi-agent orchestration through agent handoff, where a RouterAgent routes queries to the most suitable specialized agent for execution.

## Overview

In Pawa AI, **agent handoff** allows an orchestration agent (e.g., a `RouterAgent`) to delegate user queries to the most appropriate specialist agent.

* **Router agent**: An agent designed to analyze user queries and determine the best agent to handle them.
* **Specialist agents**: Domain-specific agents (e.g., research, translation, financial assistant).
* **Handoff process**: The router inspects the query, decides whether to answer directly or forward it to another agent, and then provides the response.

This ensures users always get the **best possible response** without needing to know which agent should handle their request.

To access handoff, you technically send the list of agents in agent chat request endpoint.

***
