Update app.py
Browse files
app.py
CHANGED
@@ -154,8 +154,8 @@ keyword_links = {
|
|
154 |
}
|
155 |
|
156 |
for keyword, link in keyword_links.items():
|
157 |
-
if keyword in question():
|
158 |
-
|
159 |
|
160 |
|
161 |
# Launch the Gradio app to allow user interaction
|
|
|
154 |
}
|
155 |
|
156 |
for keyword, link in keyword_links.items():
|
157 |
+
if keyword in question.lower():
|
158 |
+
return link
|
159 |
|
160 |
|
161 |
# Launch the Gradio app to allow user interaction
|