Spaces:
Sleeping
Sleeping
prithivMLmods
commited on
Commit
•
61b4642
1
Parent(s):
b9dd871
Update app.py
Browse files
app.py
CHANGED
@@ -109,16 +109,13 @@ def respond(
|
|
109 |
|
110 |
demo = gr.ChatInterface(
|
111 |
respond,
|
|
|
112 |
additional_inputs=[
|
113 |
gr.Textbox(value="", label="System message", visible=False),
|
114 |
-
gr.
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
]),
|
119 |
-
gr.Row([
|
120 |
-
gr.Dropdown(choices=list(mood_prompts.keys()), label="Mood", value="Casual"),
|
121 |
-
])
|
122 |
],
|
123 |
css=css,
|
124 |
theme="allenai/gradio-theme",
|
|
|
109 |
|
110 |
demo = gr.ChatInterface(
|
111 |
respond,
|
112 |
+
|
113 |
additional_inputs=[
|
114 |
gr.Textbox(value="", label="System message", visible=False),
|
115 |
+
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens", visible=False),
|
116 |
+
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature", visible=False),
|
117 |
+
gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-P", visible=False),
|
118 |
+
gr.Dropdown(choices=list(mood_prompts.keys()), label="Mood", value="Casual"),
|
|
|
|
|
|
|
|
|
119 |
],
|
120 |
css=css,
|
121 |
theme="allenai/gradio-theme",
|