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

# Classify Reload • AI Agent SDK

> classify_reload: Classify a changed dotted config ``path`` into a :class:`ReloadScope`.

# classify\_reload

<div className="flex items-center gap-2">
  <Badge color="teal">Function</Badge>
</div>

> This function is defined in the [**config**](../modules/config) module.

Classify a changed dotted config `path` into a :class:`ReloadScope`.

Canonical, side-effect-free classification shared by every runtime so a
hot-reload plan is built identically regardless of who loads the config.
Anything not explicitly recognised falls through to `ReloadScope.FULL`,
keeping full restart the fail-safe default for structural changes.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def classify_reload(path: str) -> str
```

## Parameters

<ParamField query="path" type="str" required={true}>
  No description available.
</ParamField>

### Returns

<ResponseField name="Returns" type="str">
  The result of the operation.
</ResponseField>

## Uses

* `is_hot_appliable`

## Source

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