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

# tripped • AI Agent SDK

> tripped: Return whether the breaker is currently tripped without recording.

# tripped

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

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

Return whether the breaker is currently tripped without recording.

Prunes aged-out events first so a burst that has since gone quiet is
no longer considered a live loop.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def tripped(now: float) -> bool
```

## Parameters

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

### Returns

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

## Used By

* [`FleetSupervisionPolicy.note_restart`](../functions/FleetSupervisionPolicy-note_restart)
* [`FleetSupervisionPolicy.note_fleet_state`](../functions/FleetSupervisionPolicy-note_fleet_state)

## Source

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