jcho02 commited on
Commit
b34371f
·
1 Parent(s): c135cf7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,6 @@ def feedback_response(feedback, comments, new_input_query):
36
  # Set up the Gradio Interface
37
  feedback_interface = gr.Interface(
38
  fn=feedback_response,
39
- gr.Textbox(label="New Input Query"),
40
  inputs=[
41
  gr.Radio(
42
  choices=[
@@ -49,6 +48,7 @@ feedback_interface = gr.Interface(
49
  gr.Textbox(label="Additional Comments")
50
 
51
  ],
 
52
  outputs="text"
53
  )
54
 
 
36
  # Set up the Gradio Interface
37
  feedback_interface = gr.Interface(
38
  fn=feedback_response,
 
39
  inputs=[
40
  gr.Radio(
41
  choices=[
 
48
  gr.Textbox(label="Additional Comments")
49
 
50
  ],
51
+ gr.Textbox(label="New Input Query"),
52
  outputs="text"
53
  )
54