Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -134,8 +134,8 @@ with gr.Blocks(theme=seafoam, analytics_enabled=False, css=css) as demo:
|
|
134 |
with gr.Column(scale=3):
|
135 |
instruction = gr.Textbox(lines=2, placeholder="Enter your question here", label="Question", elem_id="q-input")
|
136 |
input = gr.components.Textbox(lines=2, label="Input", placeholder="none")
|
137 |
-
temperature = gr.components.Slider(minimum=0, maximum=1, value=0.1, label="Temperature")
|
138 |
-
top_p = gr.components.Slider(minimum=0, maximum=1, value=0.75, label="Top p")
|
139 |
top_k = gr.components.Slider(minimum=0, maximum=100, step=1, value=40, label="Top k")
|
140 |
|
141 |
|
|
|
134 |
with gr.Column(scale=3):
|
135 |
instruction = gr.Textbox(lines=2, placeholder="Enter your question here", label="Question", elem_id="q-input")
|
136 |
input = gr.components.Textbox(lines=2, label="Input", placeholder="none")
|
137 |
+
temperature = gr.components.Slider(minimum=0, maximum=1, value=0.1, label="Temperature")
|
138 |
+
top_p = gr.components.Slider(minimum=0, maximum=1, value=0.75, label="Top p")
|
139 |
top_k = gr.components.Slider(minimum=0, maximum=100, step=1, value=40, label="Top k")
|
140 |
|
141 |
|