SimpleChat: Add a skeletal html page

Contains a div placeholder for showing chat messages till now

a text-input for allowing user to enter next chat message/query
to the model.

a submit button to allow sending of the user entered message and
chat till now to the model.
This commit is contained in:
HanishKVC 2024-05-17 17:36:16 +05:30
parent 0fc1e820a9
commit 69ecad21e7

View file

@ -0,0 +1,9 @@
<html>
<head>Simple LlamaCPP Chat</head>
<body>
<div id="chat"></div>
<hr>
<input type="text" id="user"/>
<button id="submit">submit</button>
</body>
</html>