You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Convert SystemPrompt into a textarea with 2 rows. Reduce
user-input-textarea to 2 rows from 3, so that overall
vertical space usage remains same.
Shorten usage messages a bit, cleanup to sync with settings ui.
Copy file name to clipboardExpand all lines: examples/server/public_simplechat/index.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@
32
32
<hr>
33
33
<divclass="sameline">
34
34
<labelfor="system-in">System</label>
35
-
<inputtype="text" name="system" id="system-in" placeholder="e.g. you are a helpful ai assistant, who provides concise answers" class="flex-grow"/>
35
+
<textareaname="system" id="system-in" rows="2" placeholder="e.g. you are a helpful ai assistant, who provides concise answers" class="flex-grow"></textarea>
36
36
</div>
37
37
38
38
<hr>
@@ -42,7 +42,7 @@
42
42
43
43
<hr>
44
44
<divclass="sameline">
45
-
<textareaid="user-in" class="flex-grow" rows="3" placeholder="enter your query to the ai model here" ></textarea>
45
+
<textareaid="user-in" class="flex-grow" rows="2" placeholder="enter your query to the ai model here" ></textarea>
0 commit comments