Queue-Tip commited on
Commit
34a9e4a
·
verified ·
1 Parent(s): 9595028

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 + ".png")
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