mehmet0001 commited on
Commit
e771c96
·
verified ·
1 Parent(s): f52dfc6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -8,6 +8,8 @@ api_key = "sk-or-v1-5b41e7106feb9b982d4ef5a6aa0959993387ba2e5fc9830df1279418776e
8
  config = st.text_area("Enter the start URL and the limit of crawling (in this format : URL,limit):")
9
  config_btn = st.button("Start crawling!")
10
 
 
 
11
  if config and config_btn:
12
  start = config.split(",")[0]
13
  limit = int(config.split(",")[1])
 
8
  config = st.text_area("Enter the start URL and the limit of crawling (in this format : URL,limit):")
9
  config_btn = st.button("Start crawling!")
10
 
11
+ collection = "asdf"
12
+
13
  if config and config_btn:
14
  start = config.split(",")[0]
15
  limit = int(config.split(",")[1])