dogutcu commited on
Commit
2c42b2e
·
verified ·
1 Parent(s): e22fe78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -143,14 +143,15 @@ theme = gr.themes.Base().set(
143
  with gr.Blocks(theme=theme) as demo:
144
  gr.Image("Video Game Banner.gif", show_label = False, show_share_button = False, show_download_button = False)
145
  gr.Markdown(welcome_message) # Display the formatted welcome message
 
146
  with gr.Row():
147
  with gr.Column():
148
- gr.Markdown(topics) # Show the topics on the left side
149
  gr.Image("Image.png", show_label = False, show_share_button = False, show_download_button = False, height=500, width=500 )
150
  with gr.Row():
151
  with gr.Column():
152
  question = gr.Textbox(label="ׁ ׁ ꥓ ݄ ׁ 𖦹 ׅ 𓈒Your Question⋆𐙚₊˚⊹♡", placeholder="༘⋆🌷🫧What do you Want to ask About?💭₊˚ෆ")
153
- answer = gr.Textbox(label="˚ ༘˚Plai Responseೀ⋆。", placeholder="ೀ🍨‧° 🎀⊹°。♡Plai will Respond Here...", interactive=False, lines=10)
154
  submit_button = gr.Button("˚₊‧꒰აSubmit໒꒱ ‧₊˚")
155
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
156
 
 
143
  with gr.Blocks(theme=theme) as demo:
144
  gr.Image("Video Game Banner.gif", show_label = False, show_share_button = False, show_download_button = False)
145
  gr.Markdown(welcome_message) # Display the formatted welcome message
146
+ gr.Markdown(topics)
147
  with gr.Row():
148
  with gr.Column():
149
+ # Show the topics on the left side
150
  gr.Image("Image.png", show_label = False, show_share_button = False, show_download_button = False, height=500, width=500 )
151
  with gr.Row():
152
  with gr.Column():
153
  question = gr.Textbox(label="ׁ ׁ ꥓ ݄ ׁ 𖦹 ׅ 𓈒Your Question⋆𐙚₊˚⊹♡", placeholder="༘⋆🌷🫧What do you Want to ask About?💭₊˚ෆ")
154
+ answer = gr.Textbox(label="˚ ༘˚Plai Responseೀ⋆。", placeholder="ೀ🍨‧° 🎀⊹°。♡Plai will Respond Here...", interactive=False, lines=17)
155
  submit_button = gr.Button("˚₊‧꒰აSubmit໒꒱ ‧₊˚")
156
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
157