{% extends "base.html" %} {% set active_nav = "workbench" %} {% block page_title %}{{ tool.name }}{% endblock %} {% block content %}

{{ tool.description }} {% if tool.is_write %}⚠ write tool{% endif %} — Category: {{ tool.category }}

{% for p in tool.parameters %} {% if p.type == 'bool' or p.type == 'bool?' %}
{% elif p.type == 'int' or p.type == 'int?' %} {% elif p.type == 'float' or p.type == 'float?' %} {% else %} {% endif %} {% endfor %}
{% if result %} {% include "partials/workbench_response.html" %} {% else %}

Fill in the parameters and click Run to execute this tool.

{% endif %}
← Back to tool list
{% endblock %}