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

# Is Hot Appliable • AI Agent SDK

> is_hot_appliable: Return whether a dotted config ``path`` can be applied without restart.

# is\_hot\_appliable

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

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

Return whether a dotted config `path` can be applied without restart.

A change is hot-appliable when the path itself is registered, or when it is
a leaf *under* a registered key (e.g. `gateway.logging.level.extra`).
Callers should treat every other path as requiring a restart plan.

## Signature

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

## Parameters

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

### Returns

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

## Used By

* [`classify_reload`](../functions/classify_reload)

## Source

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