Spaces:
Sleeping
Sleeping
This Pull Request fixes the space (#1)
Browse files- This Pull Request fixes the space (90e4e28b976c1d1abf0e3e1f89890c9435c3e59b)
Co-authored-by: Fabrice TIERCELIN <[email protected]>
app.py
CHANGED
@@ -15,7 +15,8 @@ demo = gr.Interface(
|
|
15 |
fn=generate,
|
16 |
inputs = gr.inputs.Textbox(lines=3, label="Input Text"),
|
17 |
outputs=gr.outputs.Textbox(label="Generated Text"),
|
18 |
-
examples=examples
|
|
|
19 |
)
|
20 |
|
21 |
demo.launch()
|
|
|
15 |
fn=generate,
|
16 |
inputs = gr.inputs.Textbox(lines=3, label="Input Text"),
|
17 |
outputs=gr.outputs.Textbox(label="Generated Text"),
|
18 |
+
examples=examples,
|
19 |
+
cache_examples=False
|
20 |
)
|
21 |
|
22 |
demo.launch()
|