vishnun commited on
Commit
5c0b1a7
1 Parent(s): 35de46a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ if submit_button:
12
  bingsearch = BingSearch(query)
13
  b_res = bingsearch.get_results(num=5, max_lines=5)
14
  with st.spinner("Pipeline for RAG is running"):
15
- # st.text(help(bingsearch.rag_output))
16
  hf_token = str(st.secrets["HF_TOKEN"])
17
  text, text_json = bingsearch.rag_output(b_res, hf_token)
18
 
 
12
  bingsearch = BingSearch(query)
13
  b_res = bingsearch.get_results(num=5, max_lines=5)
14
  with st.spinner("Pipeline for RAG is running"):
15
+ st.text(help(bingsearch.rag_output))
16
  hf_token = str(st.secrets["HF_TOKEN"])
17
  text, text_json = bingsearch.rag_output(b_res, hf_token)
18