> ## 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.

# Reload Scope • AI Agent SDK

> ReloadScope: Canonical classification of a changed config ``path``'s reload scope.

# ReloadScope

> Defined in the [**config**](../modules/config) module.

<Badge color="blue">AI Agent</Badge>

Canonical classification of a changed config `path`'s reload scope.

Values are plain strings so wrapper/runtime code can compare without
importing this class. `FULL` is the fail-safe default for unknown or
structural changes.

* `HOT`: apply in place, no restart (see :func:`is_hot_appliable`).
* `CHANNEL`: a change under `channels.&lt;name&gt;` — restart only that one
  channel; other channels keep their connections and in-flight turns.
* `AGENTS`: an agent/provider/guardrails change — recreate agents only,
  without bouncing channels.
* `FULL`: unknown or structural change — full restart (fail-safe).

## Source

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