Update app.py
Browse files
app.py
CHANGED
@@ -165,9 +165,9 @@ with gr.Blocks() as demo:
|
|
165 |
gr.Markdown("# ArcanaUI v0.7")
|
166 |
with gr.Tabs():
|
167 |
with gr.TabItem("Welcome Page"):
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
|
172 |
with gr.TabItem("Chatbot"):
|
173 |
chatbot_interface.render()
|
|
|
165 |
gr.Markdown("# ArcanaUI v0.7")
|
166 |
with gr.Tabs():
|
167 |
with gr.TabItem("Welcome Page"):
|
168 |
+
with open('ntroduction.txt') as file:
|
169 |
+
intro_content = file.read()
|
170 |
+
gr.Markdown(intro_content)
|
171 |
|
172 |
with gr.TabItem("Chatbot"):
|
173 |
chatbot_interface.render()
|