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

# Admission Decision • AI Agent SDK

> AdmissionDecision: Outcome of an inbound admission evaluation.

# AdmissionDecision

> Defined in the [**protocols**](../modules/protocols) module.

<Badge color="blue">AI Agent</Badge>

Outcome of an inbound admission evaluation.

* `ADMIT` — capacity is available; run immediately.
* `QUEUE` — at the concurrency ceiling but the wait queue has room;
  block until a slot frees up.
* `REJECT` — over capacity and the queue is full; shed the run with a
  busy acknowledgement (a `503`-style signal to the user).

## Source

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