Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -407,6 +407,14 @@ with gr.Blocks() as demo:
|
|
407 |
cleared = gr.Button ("Clear")
|
408 |
cleared.click (fn=clear, inputs=[], outputs=[out_markdown])
|
409 |
|
|
|
410 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
|
412 |
demo.launch()
|
|
|
407 |
cleared = gr.Button ("Clear")
|
408 |
cleared.click (fn=clear, inputs=[], outputs=[out_markdown])
|
409 |
|
410 |
+
with gr.Row():
|
411 |
|
412 |
+
gr.Markdown (
|
413 |
+
"""
|
414 |
+
## Params Playground
|
415 |
+
Tweak and test model parameters and see how they affect generated text.
|
416 |
+
"""
|
417 |
+
|
418 |
+
)
|
419 |
|
420 |
demo.launch()
|