Spaces:
Running
Running
This Pull Request fixes the space
#1
by
Fabrice-TIERCELIN
- opened
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()
|