Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
|
|
|
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)
|