b3ndur commited on
Commit
b577268
·
1 Parent(s): 0f46d1b

concate string

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -87,7 +87,7 @@ def normalize_query(user_query):
87
  }]
88
  )
89
  normalized_user_query = response.choices[0].message.content.split('\n')[-1].strip()
90
- return normalized_user_query
91
  except Exception as e:
92
  print(f"Error normalizing query: {e}")
93
  return ""
 
87
  }]
88
  )
89
  normalized_user_query = response.choices[0].message.content.split('\n')[-1].strip()
90
+ return normalized_user_query + str(user_query)
91
  except Exception as e:
92
  print(f"Error normalizing query: {e}")
93
  return ""