> ## 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 Config Current • AI Agent SDK

> is_config_current: Return whether ``raw`` already carries the current ``config_version``.

# is\_config\_current

<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 `raw` already carries the current `config_version`.

A malformed stamp (non-integer / boolean) is not "current" — it raises
:class:`ConfigVersionError` so operators fix it rather than having it
silently coerced (`True == 1`).

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def is_config_current(raw: Mapping[str, Any]) -> bool
```

## Parameters

<ParamField query="raw" type="Mapping[str, Any]" required={true}>
  No description available.
</ParamField>

### Returns

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

## Source

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

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Configuration Overview" icon="gear" href="/docs/docs/configuration/index" />

  <Card title="Agent Config" icon="robot" href="/docs/docs/configuration/agent-config" />
</CardGroup>
