Update app.py
Browse files
app.py
CHANGED
@@ -98,7 +98,7 @@ def get_refs(res):
|
|
98 |
return result_str
|
99 |
|
100 |
def run_query(input_text, country):
|
101 |
-
docs = get_docs(input_text)
|
102 |
st.write('Selected country: ', country) # Debugging country
|
103 |
res = pipe.run(query=input_text, documents=docs)
|
104 |
output = res["results"][0]
|
|
|
98 |
return result_str
|
99 |
|
100 |
def run_query(input_text, country):
|
101 |
+
docs = get_docs(input_text, country)
|
102 |
st.write('Selected country: ', country) # Debugging country
|
103 |
res = pipe.run(query=input_text, documents=docs)
|
104 |
output = res["results"][0]
|