Spaces:
Sleeping
Sleeping
change gr.Blocks to gr.Blocks()
Browse files
app.py
CHANGED
@@ -87,7 +87,7 @@ The optimal text lenght is porbably around 8-10 lines. Longer text
|
|
87 |
will obviously take longer. Please keep in mind that this is a work in
|
88 |
progress and might still be a little bit buggy."""
|
89 |
|
90 |
-
with gr.Blocks as iface:
|
91 |
gr.Markdown(description)
|
92 |
context = gr.Textbox(label="Input text")
|
93 |
questions = gr.Textbox(label="Questions")
|
|
|
87 |
will obviously take longer. Please keep in mind that this is a work in
|
88 |
progress and might still be a little bit buggy."""
|
89 |
|
90 |
+
with gr.Blocks() as iface:
|
91 |
gr.Markdown(description)
|
92 |
context = gr.Textbox(label="Input text")
|
93 |
questions = gr.Textbox(label="Questions")
|