Update app.py
Browse files
app.py
CHANGED
@@ -121,6 +121,8 @@ topics = """
|
|
121 |
- Potential Reading Challenges
|
122 |
- Controversies
|
123 |
- Book Background Information
|
|
|
|
|
124 |
### Or ask me about any of these books:
|
125 |
- The Great Gatsby
|
126 |
- The Crucible
|
@@ -138,8 +140,9 @@ topics = """
|
|
138 |
with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
|
139 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
140 |
with gr.Row():
|
141 |
-
|
142 |
gr.Markdown(topics) # Show the topics on the left side
|
|
|
143 |
with gr.Row():
|
144 |
with gr.Column():
|
145 |
question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
|
|
|
121 |
- Potential Reading Challenges
|
122 |
- Controversies
|
123 |
- Book Background Information
|
124 |
+
"""
|
125 |
+
books = """
|
126 |
### Or ask me about any of these books:
|
127 |
- The Great Gatsby
|
128 |
- The Crucible
|
|
|
140 |
with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
|
141 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
142 |
with gr.Row():
|
143 |
+
# with gr.Column():
|
144 |
gr.Markdown(topics) # Show the topics on the left side
|
145 |
+
gr.Markdown(books)
|
146 |
with gr.Row():
|
147 |
with gr.Column():
|
148 |
question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
|