{{ func.title or func.name }} {% if func.description %} {{ func.description }} {% endif %} ▶ Execute {% for param in func.parameters %} {% set param_type = param.type %} {{ param.name }} {% if param_type and param_type != 'str' %} {{ param_type }} {% endif %} {% if param_type in ('int', 'float') %} {% elif param_type == 'complex' %} {% elif param_type == 'bool' %} False {% elif param_type == 'dict' %} {% if param.default is not none %}{{ param.default }}{% endif %} {% elif not param_type %} {% if param.default is not none %}{{ param.default }}{% endif %} {% elif param_type in ('List[str]', 'list', 'set', 'tuple', 'List[int]', 'List[float]', 'List[list]', 'List[complex]') %} {% if param.default is not none %}{{ param.default }}{% endif %} {% else %} {% endif %} {% endfor %} Waiting… Copy