Spaces:
Sleeping
Sleeping
output set to html
Browse files
app.py
CHANGED
@@ -106,7 +106,7 @@ interface_original = gr.Interface(fn=create_response,
|
|
106 |
" output, but it might also introduce errors and inconsistencies ", value=True),
|
107 |
gr.Textbox(label="model", lines=3, value="original_model",visible=False)
|
108 |
],
|
109 |
-
outputs=
|
110 |
)
|
111 |
examples = copy.deepcopy(common_examples)
|
112 |
print(examples)
|
@@ -150,7 +150,7 @@ interface_untethered_model = gr.Interface(fn=create_response,
|
|
150 |
" output, but it might also introduce errors and inconsistencies ", value=True),
|
151 |
gr.Textbox(label="model", lines=3, value="untethered_model",visible=False)
|
152 |
],
|
153 |
-
outputs=
|
154 |
)
|
155 |
|
156 |
examples = copy.deepcopy(common_examples)
|
@@ -193,7 +193,7 @@ interface_untethered_paraphrased_model = gr.Interface(fn=create_response,
|
|
193 |
" output, but it might also introduce errors and inconsistencies ", value=True),
|
194 |
gr.Textbox(label="model", lines=3, value="untethered_paraphrased_model",visible=False)
|
195 |
],
|
196 |
-
outputs=
|
197 |
)
|
198 |
|
199 |
|
|
|
106 |
" output, but it might also introduce errors and inconsistencies ", value=True),
|
107 |
gr.Textbox(label="model", lines=3, value="original_model",visible=False)
|
108 |
],
|
109 |
+
outputs="html"
|
110 |
)
|
111 |
examples = copy.deepcopy(common_examples)
|
112 |
print(examples)
|
|
|
150 |
" output, but it might also introduce errors and inconsistencies ", value=True),
|
151 |
gr.Textbox(label="model", lines=3, value="untethered_model",visible=False)
|
152 |
],
|
153 |
+
outputs="html"
|
154 |
)
|
155 |
|
156 |
examples = copy.deepcopy(common_examples)
|
|
|
193 |
" output, but it might also introduce errors and inconsistencies ", value=True),
|
194 |
gr.Textbox(label="model", lines=3, value="untethered_paraphrased_model",visible=False)
|
195 |
],
|
196 |
+
outputs= "html"
|
197 |
)
|
198 |
|
199 |
|