pennyhsy commited on
Commit
c566fb8
·
verified ·
1 Parent(s): d209892

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -128,8 +128,8 @@ with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
128
  gr.Markdown(topics) # Show the topics on the left side
129
  with gr.Row():
130
  with gr.Column():
131
- question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
132
- answer = gr.Textbox(label="ChessBot Response", placeholder="ChessBot will respond here...", interactive=False, lines=10)
133
  submit_button = gr.Button("Submit")
134
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
135
 
 
128
  gr.Markdown(topics) # Show the topics on the left side
129
  with gr.Row():
130
  with gr.Column():
131
+ question = gr.Textbox(label="Your question", placeholder="Type your question here...")
132
+ answer = gr.Textbox(label="GreenUnity Response", placeholder="GreenUnity will respond here...", interactive=False, lines=10)
133
  submit_button = gr.Button("Submit")
134
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
135