bstraehle commited on
Commit
868ab08
·
verified ·
1 Parent(s): 19893e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -32,8 +32,8 @@ def invoke(openai_api_key, prompt, rag_option):
32
  ### Post-retrieval processing: result filter
33
  match_stage = {
34
  "$match": {
35
- "accommodates": { "$gt": 1, "$lt": 3},
36
- "bedrooms": { "$gt": 0, "$lt": 2}
37
  }
38
  }
39
 
 
32
  ### Post-retrieval processing: result filter
33
  match_stage = {
34
  "$match": {
35
+ "accommodates": { "$eq": 2},
36
+ "bedrooms": { "$eq": 1}
37
  }
38
  }
39