> ## 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 runtime by ID with optional configuration overrides.

# resolve

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

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

Resolve a runtime by ID with optional configuration overrides.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def resolve(runtime_id: str, config_overrides: Optional[Dict[str, Any]]) -> Any
```

## Parameters

<ParamField query="runtime_id" type="str" required={true}>
  Runtime identifier to resolve
</ParamField>

<ParamField query="config_overrides" type="Optional" required={false}>
  Optional configuration overrides
</ParamField>

### Returns

<ResponseField name="Returns" type="Any">
  Runtime instance (typically implementing AgentRuntimeProtocol)
</ResponseField>

### Exceptions

<AccordionGroup>
  <Accordion title="ValueError">
    If runtime\_id is not registered (fail-closed behavior)
  </Accordion>

  <Accordion title="TypeError">
    If runtime cannot be instantiated
  </Accordion>
</AccordionGroup>

## 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/runtime/registry.py#L101">
  `praisonaiagents/runtime/registry.py` at line 101
</Card>
