{% extends 'base.html' %} {% block title %}Test Client{% endblock %} {% block headextra %} {% endblock %} {% block body %}

Enter parameters for each algorithm in the chain

{% if form.errors %}
{% for field, errors in form.errors.items() %} {% for error in errors %} {% endfor %} {% endfor %}
{% endif %}
{{ form.api_key.label(class="col-sm-3 control-label required-label") }}
{% set field_class = 'form-control form-control-sm' %} {% if form.api_key.name in form.errors %} {% set field_class = field_class + ' is-invalid' %} {% endif %} {{ form.api_key(class=field_class, required=true) }} {% if form.api_key.name in form.errors %} Please provide a value {% endif %}
Fields marked with a * are required
{% for a in a_list %}
{{ a['display_name'] }}
{% set ns = namespace(has_input=false) %} {% for rp in a['required_parameters'] %} {% if rp['field'] %}
{{ rp['field'].label(class="col-sm-3 control-label required-label") }}
{% set field_class = 'form-control form-control-sm' %} {% if rp['field'].name in form.errors %} {% set field_class = field_class + ' is-invalid' %} {% endif %} {{ rp['field'](class=field_class) }} {% if rp['field'].name in form.errors %} Please provide a value {% endif %} {{ rp['help_text'] }}
{% set ns.has_input = true %} {% endif %} {% endfor %} {% for op in a['optional_parameters'] %} {% if op['field'] %}
{{ op['field'].label(class="col-sm-3 control-label") }}
{% set field_class = 'form-control form-control-sm' %} {% if op['field'].name in form.errors %} {% set field_class = field_class + ' is-invalid' %} {% endif %} {{ op['field'](class=field_class) }} {% if op['field'].name in form.errors %} Error in field value {% endif %} {{ op['help_text'] }}
{% endif %} {% set ns.has_input = true %} {% endfor %} {% if not ns.has_input %}

No input needed.

{% endif %} {% endfor %} {{ form.csrf_token }}

Chain Status:Running

Algorithm Progress:
Chain Progress:

Chain Result:


            


{% endblock %} {% block footextra %} {% endblock %}