datasciencedojo commited on
Commit
644302b
·
1 Parent(s): 04ba913

updated the labels of inputs and output

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,5 +67,5 @@ footer {display:none !important}
67
  background-color: rgb(229,225,255) !important;
68
  }
69
  """
70
- demo = gr.Interface(fn=get_question, inputs=[gr.Textbox(lines=3, placeholder="Enter text here", label="Context"), gr.Textbox(lines=1, label="Answer")], outputs=gr.Textbox(label="Generated Question"), title="Question Generator | Data Science Dojo", examples=examples, css=css)
71
  demo.launch()
 
67
  background-color: rgb(229,225,255) !important;
68
  }
69
  """
70
+ demo = gr.Interface(fn=get_question, inputs=[gr.Textbox(lines=3, placeholder="Enter text here", label="Input # 1 - Context"), gr.Textbox(lines=1, label="Input # 2 - Answer")], outputs=gr.Textbox(label="Output - Generated Question"), title="Question Generator | Data Science Dojo", examples=examples, css=css)
71
  demo.launch()