> ## 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 [**FleetSupervisionPolicy**](../classes/FleetSupervisionPolicy) class in the [**protocols**](../modules/protocols) module.

Return whether the breaker is currently tripped without recording.

When the cooldown has elapsed the breaker re-arms cleanly: the accrued
event window is cleared so the accumulated pre-trip restarts cannot
immediately re-trip on the very next `note_restart`.

## 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#L4586">
  `praisonaiagents/gateway/protocols.py` at line 4586
</Card>
