Update app.py
Browse files
app.py
CHANGED
@@ -153,9 +153,9 @@ keyword_links = {
|
|
153 |
"victorian": "Here is a link to the pinterest board to help you get started and find inspiration for your style! Just copy this link to get to the board: https://pin.it/3UrJ3mDXm",
|
154 |
}
|
155 |
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
|
160 |
|
161 |
# Launch the Gradio app to allow user interaction
|
|
|
153 |
"victorian": "Here is a link to the pinterest board to help you get started and find inspiration for your style! Just copy this link to get to the board: https://pin.it/3UrJ3mDXm",
|
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
|