thedamn commited on
Commit
03a748b
·
1 Parent(s): 7af38f2

good night commit

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def main():
13
  web_scrape(user_url)
14
  curr_path = data_cloning()
15
  query = analyse()
16
- response_gpt = llm_chain.run([query])
17
  # Display the response
18
  st.text_area("Bot Response:", value=response_gpt, height=100)
19
 
 
13
  web_scrape(user_url)
14
  curr_path = data_cloning()
15
  query = analyse()
16
+ response_gpt = llm_chain([query])
17
  # Display the response
18
  st.text_area("Bot Response:", value=response_gpt, height=100)
19