> ## Documentation Index
> Fetch the complete documentation index at: https://docs.widgentic.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Limits

> The per-user and structural limits the server enforces on stored entries, templates and prompt actions — derived from the store defaults and validators.

| Limit                             | Value   |
| --------------------------------- | ------- |
| Widgets per user                  | `100`   |
| Themes per user                   | `50`    |
| Bytes per stored entry            | `65536` |
| Template nodes per stored widget  | `2000`  |
| Template nesting depth            | `64`    |
| Interpreted nodes per render      | `50000` |
| Resolved prompt text (characters) | `2000`  |

maxTemplateNodes bounds the template's STRUCTURE as stored (countTemplateNodes), distinct from the interpretation budget.

Validation rejects deeper nesting; interpretation stops at the node budget and marks the render truncated.

The http action request limits (deadline, response size, content type) are on [Action definition](/reference/action-definition).
