zmbfeng commited on
Commit
9c6e8e6
·
1 Parent(s): 20645d3

output set to html

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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=[gr.Textbox(label="output response", lines=30)]
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=[gr.Textbox(label="output response", lines=30)]
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= [gr.Textbox(label="output response", lines=30)]
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