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:
parent
0fc1e820a9
commit
69ecad21e7
|
|
@ -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>
|
||||||
Loading…
Reference in New Issue