{% extends "base.html" %} {% block content %}
{{ tool.description }}
{% endif %} {% set properties = tool.input_schema.get("properties", {}) %} {% set required_params = tool.input_schema.get("required", []) %} {% if properties %}| Name | Type | Required | Default | Description |
|---|---|---|---|---|
{{ param_name }} |
{{ param_schema.get("type", "any") }} |
{{ "yes" if param_name in required_params else "no" }} | {{ param_schema.get("default", "—") }} | {{ param_schema.get("description", "") }} |
{{ tool.input_schema | tojson(indent=2) }}