// {{ error_title }} [{{ status_code }}]

{{ error_description }}

{% if debug %}

> SYSTEM DIAGNOSTICS

Request ID: {{ request_id }}

{% if traceback %}
Show Traceback
{{ traceback }}
{% endif %}

> AI ASSISTANT ANALYSIS

  • Error Type: {{ status_code }} {{ error_title }}
  • Request Path: {{ request_path }}
  • Analysis: The system encountered an exception while processing the request. Review the traceback to identify the root cause.
  • Recommendation: {% if status_code == 500 %} Focus on the last frame of the traceback to find the line of code that raised the exception. Check for logic errors, incorrect variable types, or issues with external services. {% elif status_code == 404 %} Verify that a route exists for {{ request.method }} {{ request.path }}. Check for typos in the URL or the route definition in your application code. {% else %} Review the application logs associated with request ID {{ request_id }} for more context. {% endif %}
{% else %}

> SYSTEM STATUS

A system anomaly has been logged. If this issue persists, please contact the system administrator.

Reference ID: {{ request_id }}

{% endif %}