Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -136,6 +136,14 @@ def chatbot(message, history, model_choice):
|
|
136 |
response = answer_question(message, model_choice)
|
137 |
return response
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
# Create Gradio interface
|
140 |
with gr.Blocks(theme="soft") as iface:
|
141 |
gr.Markdown("# History Chatbot")
|
@@ -154,12 +162,7 @@ with gr.Blocks(theme="soft") as iface:
|
|
154 |
additional_inputs=[model_choice],
|
155 |
chatbot=gr.Chatbot(height=300),
|
156 |
textbox=gr.Textbox(placeholder="Ask a question about history...", container=False, scale=7),
|
157 |
-
examples=
|
158 |
-
"Why was Anne Hutchinson banished from Massachusetts?",
|
159 |
-
"What were the major causes of World War I?",
|
160 |
-
"Who was the first President of the United States?",
|
161 |
-
"What was the significance of the Industrial Revolution?"
|
162 |
-
],
|
163 |
cache_examples=False,
|
164 |
retry_btn=None,
|
165 |
undo_btn="Delete Previous",
|
|
|
136 |
response = answer_question(message, model_choice)
|
137 |
return response
|
138 |
|
139 |
+
# Example questions with default model choice
|
140 |
+
EXAMPLE_QUESTIONS = [
|
141 |
+
["Why was Anne Hutchinson banished from Massachusetts?", "Cohere"],
|
142 |
+
["What were the major causes of World War I?", "Cohere"],
|
143 |
+
["Who was the first President of the United States?", "Cohere"],
|
144 |
+
["What was the significance of the Industrial Revolution?", "Cohere"]
|
145 |
+
]
|
146 |
+
|
147 |
# Create Gradio interface
|
148 |
with gr.Blocks(theme="soft") as iface:
|
149 |
gr.Markdown("# History Chatbot")
|
|
|
162 |
additional_inputs=[model_choice],
|
163 |
chatbot=gr.Chatbot(height=300),
|
164 |
textbox=gr.Textbox(placeholder="Ask a question about history...", container=False, scale=7),
|
165 |
+
examples=EXAMPLE_QUESTIONS, # Now properly formatted with model choice
|
|
|
|
|
|
|
|
|
|
|
166 |
cache_examples=False,
|
167 |
retry_btn=None,
|
168 |
undo_btn="Delete Previous",
|