Update app.py
Browse files
app.py
CHANGED
@@ -130,6 +130,8 @@ books = """
|
|
130 |
- Of Mice and Men
|
131 |
- To Kill a Mockingbird
|
132 |
- Romeo and Juliet
|
|
|
|
|
133 |
- The Catcher in the Rye
|
134 |
- Pride and Prejudice
|
135 |
- Lord of the Flies
|
@@ -143,6 +145,7 @@ with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
|
|
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?")
|
|
|
130 |
- Of Mice and Men
|
131 |
- To Kill a Mockingbird
|
132 |
- Romeo and Juliet
|
133 |
+
"""
|
134 |
+
books2 = """
|
135 |
- The Catcher in the Rye
|
136 |
- Pride and Prejudice
|
137 |
- Lord of the Flies
|
|
|
145 |
# with gr.Column():
|
146 |
gr.Markdown(topics) # Show the topics on the left side
|
147 |
gr.Markdown(books)
|
148 |
+
gr.Markdown(book2)
|
149 |
with gr.Row():
|
150 |
with gr.Column():
|
151 |
question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
|