mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-06 02:48:57 +01:00
server : clear trailing whitespace
This commit is contained in:
parent
b07b271358
commit
c1cb0e1db2
@ -206,7 +206,7 @@
|
|||||||
<legend>Settings</legend>
|
<legend>Settings</legend>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label for="prompt">Prompt</label>
|
<label for="prompt">Prompt</label>
|
||||||
<textarea type="text" id="prompt" value="${settings.value.prompt}" oninput=${(e) => settings.value.prompt = e.target.value} rows="3" cols="60" />
|
<textarea type="text" id="prompt" value="${settings.value.prompt}" oninput=${(e) => settings.value.prompt = e.target.value} rows="3" cols="60" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -224,7 +224,7 @@
|
|||||||
<label for="template">Prompt template</label>
|
<label for="template">Prompt template</label>
|
||||||
<textarea id="template" value="${chatTemplate}" oninput=${(e) => chatTemplate.value = e.target.value} rows="8" cols="60" />
|
<textarea id="template" value="${chatTemplate}" oninput=${(e) => chatTemplate.value = e.target.value} rows="8" cols="60" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label for="temperature">Temperature</label>
|
<label for="temperature">Temperature</label>
|
||||||
<input type="range" id="temperature" min="0.0" max="1.0" step="0.01" value="${temperature.value}" oninput=${(e) => temperature.value = e.target.value} />
|
<input type="range" id="temperature" min="0.0" max="1.0" step="0.01" value="${temperature.value}" oninput=${(e) => temperature.value = e.target.value} />
|
||||||
@ -250,7 +250,7 @@
|
|||||||
<header>
|
<header>
|
||||||
<h1>llama.cpp</h1>
|
<h1>llama.cpp</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<section class="chat">
|
<section class="chat">
|
||||||
<${chatStarted.value ? ChatLog : ConfigForm
|
<${chatStarted.value ? ChatLog : ConfigForm
|
||||||
@ -262,7 +262,7 @@
|
|||||||
<section class="chat">
|
<section class="chat">
|
||||||
<${MessageInput} />
|
<${MessageInput} />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</main >
|
</main >
|
||||||
<footer>
|
<footer>
|
||||||
<p>Powered by <a href="https://github.com/ggerganov/llama.cpp">llama.cpp</a> and <a href="https://ggml.ai">ggml.ai</a></p>
|
<p>Powered by <a href="https://github.com/ggerganov/llama.cpp">llama.cpp</a> and <a href="https://ggml.ai">ggml.ai</a></p>
|
||||||
@ -279,4 +279,4 @@
|
|||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user