Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ query = st.text_input("Enter the query you want to search for:")
|
|
8 |
st.caption("Example: Why is there a huge conflict between India and Pakistan?")
|
9 |
submit_button = st.button("Submit")
|
10 |
hf_token = st.secrets["HF_TOKEN"]
|
11 |
-
|
12 |
if submit_button:
|
13 |
bingsearch = BingSearch(query)
|
14 |
b_res = bingsearch.get_results(num=5, max_lines=3)
|
|
|
8 |
st.caption("Example: Why is there a huge conflict between India and Pakistan?")
|
9 |
submit_button = st.button("Submit")
|
10 |
hf_token = st.secrets["HF_TOKEN"]
|
11 |
+
|
12 |
if submit_button:
|
13 |
bingsearch = BingSearch(query)
|
14 |
b_res = bingsearch.get_results(num=5, max_lines=3)
|