Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,5 +33,5 @@ def generate_text(prompt):
|
|
33 |
yield generated_text # Yield the entire generated text so far
|
34 |
|
35 |
# Create a Gradio interface with a text input and a text output
|
36 |
-
interface = gr.Interface(fn=generate_text, inputs='text', outputs='text', live=
|
37 |
interface.launch()
|
|
|
33 |
yield generated_text # Yield the entire generated text so far
|
34 |
|
35 |
# Create a Gradio interface with a text input and a text output
|
36 |
+
interface = gr.Interface(fn=generate_text, inputs='text', outputs='text', live=False)
|
37 |
interface.launch()
|