Ocillus commited on
Commit
cfa4714
·
verified ·
1 Parent(s): 2350994

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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
- gr.Markdown("""
169
- hi
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()