abhivsh commited on
Commit
71a5775
·
verified ·
1 Parent(s): 9c9a4f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -7
app.py CHANGED
@@ -137,12 +137,15 @@ iface = gr.ChatInterface(
137
 
138
  Title= "# -----: Conversational BOT for Model-TS :----- "
139
 
140
- with gr.Blocks(css="style.css") as demo:
141
- gr.Markdown(Title)
142
- iface.render()
143
-
144
- if __name__ == "__main__":
145
- demo.queue(max_size=100).launch(debug=True)
146
 
 
 
 
 
 
 
 
 
147
 
148
- # What should be the GIB height outside the GIS hall ?
 
 
137
 
138
  Title= "# -----: Conversational BOT for Model-TS :----- "
139
 
 
 
 
 
 
 
140
 
141
+ with gr.Blocks(css=css) as demo:
142
+ with gr.Row():
143
+ with gr.Column():
144
+ gr.Image(os.getcwd()+'PG Logo.png', width = 40, show_download_button = False, show_label = False)
145
+ with gr.Column():
146
+ gr.Markdown(Title)
147
+ with gr.Row():
148
+ iface.render()
149
 
150
+ if __name__ == "__main__":
151
+ demo.queue(max_size=100).launch(debug=True)