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

# resolve • AI Agent SDK

> resolve: Resolve a routing token to concrete delivery targets.

# resolve

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**DeliveryResolverProtocol**](../classes/DeliveryResolverProtocol) class in the [**protocols**](../modules/protocols) module.

Resolve a routing token to concrete delivery targets.

Token formats:

* "origin": Reply to the chat where the job was created (requires origin)
* "\<platform>": That platform's home channel
* "\<platform>:\<chat\_id>\[:\<thread\_id>]": Explicit target
* "all": Fan-out to every connected platform with a home channel

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def resolve(token: str) -> List['DeliveryTarget']
```

## Parameters

<ParamField query="token" type="str" required={true}>
  Routing token to resolve
</ParamField>

### Returns

<ResponseField name="Returns" type="List['DeliveryTarget']">
  List of concrete delivery targets
</ResponseField>

## Used By

* [`Agent.skill_manager`](../functions/Agent-skill_manager)
* [`resolve_memory`](../functions/resolve_memory)
* [`resolve_knowledge`](../functions/resolve_knowledge)
* [`resolve_output`](../functions/resolve_output)
* [`resolve_execution`](../functions/resolve_execution)

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/gateway/protocols.py#L2369">
  `praisonaiagents/gateway/protocols.py` at line 2369
</Card>
