Files
Agent86/Agent86/Agent86/Pages/Index.cshtml
Karsten Jeppesen c254686f9f
All checks were successful
UCN/Agent86/pipeline/head This commit looks good
DMA-CSD-CICD/Agent86/pipeline/head This commit looks good
Agent86: Initial commit
2026-05-08 07:16:56 +02:00

19 lines
418 B
Plaintext

@page
@model IndexModel
<h2>Customer Roleplay Chat</h2>
<div style="border:1px solid #ccc; padding:10px; height:300px; overflow-y:auto;">
@foreach (var msg in Model.ChatHistory)
{
<p>
<strong>@msg.Role:</strong> @msg.Content
</p>
}
</div>
<form method="post">
<input type="text" asp-for="UserInput" style="width:80%" />
<button type="submit">Send</button>
</form>