Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -132,7 +132,7 @@ with gr.Blocks(theme=seafoam, analytics_enabled=False, css=css) as demo:
|
|
| 132 |
|
| 133 |
with gr.Row():
|
| 134 |
with gr.Column(scale=3):
|
| 135 |
-
instruction = gr.Textbox(lines=2, placeholder="
|
| 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")
|
|
@@ -140,7 +140,7 @@ with gr.Blocks(theme=seafoam, analytics_enabled=False, css=css) as demo:
|
|
| 140 |
|
| 141 |
|
| 142 |
with gr.Box():
|
| 143 |
-
gr.Markdown("**
|
| 144 |
output = gr.Markdown(elem_id="q-output")
|
| 145 |
submit = gr.Button("Generate", variant="primary")
|
| 146 |
gr.Examples(
|
|
|
|
| 132 |
|
| 133 |
with gr.Row():
|
| 134 |
with gr.Column(scale=3):
|
| 135 |
+
instruction = gr.Textbox(lines=2, placeholder="Tell me more about alpacas.", label="Instruction", 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")
|
|
|
|
| 140 |
|
| 141 |
|
| 142 |
with gr.Box():
|
| 143 |
+
gr.Markdown("**Output**")
|
| 144 |
output = gr.Markdown(elem_id="q-output")
|
| 145 |
submit = gr.Button("Generate", variant="primary")
|
| 146 |
gr.Examples(
|