@page @using LLama.Web.Common; @model IndexModel @{ ViewData["Title"] = "Inference Demo"; } @Html.AntiForgeryToken()
@ViewData["Title"]
Socket: Disconnected
Model @Html.DropDownListFor(m => m.SessionConfig.Model, new SelectList(Model.Options.Models, "Name", "Name"), new { @class = "form-control prompt-control" ,required="required", autocomplete="off"})
Inference Type @Html.DropDownListFor(m => m.SessionConfig.ExecutorType, Html.GetEnumSelectList(), new { @class = "form-control prompt-control" ,required="required", autocomplete="off"})
@{ await Html.RenderPartialAsync("_ChatTemplates"); } @section Scripts { }