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
1 changed files with 9 additions and 0 deletions
9
examples/server/public/simplechat.html
Normal file
9
examples/server/public/simplechat.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue