-
-
- @Html.DropDownListFor(m => m.SessionConfig.Model, new SelectList(Model.Options.Models, "Name", "Name"), new { @class = "form-select prompt-control", required = "required", autocomplete = "off" })
- @Html.LabelFor(m => m.SessionConfig.Model)
-
-
-
-
- @Html.DropDownListFor(m => m.SessionConfig.ExecutorType, Html.GetEnumSelectList(), new { @class = "form-select prompt-control", required = "required", autocomplete = "off" })
- @Html.LabelFor(m => m.SessionConfig.ExecutorType)
-
-
-
-
- @Html.TextAreaFor(m => Model.SessionConfig.Prompt, new { @class = "form-control prompt-control", rows = 8 })
- @Html.LabelFor(m => m.SessionConfig.Prompt)
-
-
-
-
-
- @Html.TextBoxFor(m => Model.SessionConfig.AntiPrompt, new { @type = "text", @class = "form-control prompt-control" })
- @Html.LabelFor(m => m.SessionConfig.AntiPrompt)
-
-
-
-
-
- @Html.TextBoxFor(m => Model.SessionConfig.OutputFilter, new { @type = "text", @class = "form-control prompt-control" })
- @Html.LabelFor(m => m.SessionConfig.OutputFilter)
-
-
-
-
-
-