Update app.py
Browse files
app.py
CHANGED
@@ -117,7 +117,7 @@ def get_image_for_response(question):
|
|
117 |
"""
|
118 |
# Normalize the response text to create a filename
|
119 |
file_name = question.lower().replace(" ", "_")
|
120 |
-
image_path = os.path.join(IMAGE_DIRECTORY, file_name + ".
|
121 |
print(question)
|
122 |
print(image_path)
|
123 |
|
|
|
117 |
"""
|
118 |
# Normalize the response text to create a filename
|
119 |
file_name = question.lower().replace(" ", "_")
|
120 |
+
image_path = os.path.join(IMAGE_DIRECTORY, file_name + ".jpg")
|
121 |
print(question)
|
122 |
print(image_path)
|
123 |
|