chukbert commited on
Commit
71138ba
·
verified ·
1 Parent(s): caa3583

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -81,7 +81,7 @@ def gradio_chatbot(input_text, explanation_text):
81
  interface = gr.Interface(
82
  fn=gradio_chatbot,
83
  inputs=["text", "text"],
84
- outputs=[gr.outputs.Textbox(label="Corrected Sentence"), gr.outputs.Markdown(label="Explanation")],
85
  title="Chatbot with Auto-Correction and Vocabulary Explanations",
86
  description="Enter a sentence for autocorrection and another for a vocabulary or sentence explanation."
87
  )
 
81
  interface = gr.Interface(
82
  fn=gradio_chatbot,
83
  inputs=["text", "text"],
84
+ outputs=[gr.Textbox(label="Corrected Sentence"), gr.Markdown(label="Explanation")],
85
  title="Chatbot with Auto-Correction and Vocabulary Explanations",
86
  description="Enter a sentence for autocorrection and another for a vocabulary or sentence explanation."
87
  )