GianJSX commited on
Commit
a1ab5e9
·
1 Parent(s): 39b45c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -14,7 +14,6 @@ os.environ["LANGCHAIN_ENDPOINT"]="https://api.smith.langchain.com"
14
  os.environ["LANGCHAIN_API_KEY"]=st.secrets["LANGCHAIN_API_KEY"]
15
  os.environ["LANGCHAIN_PROJECT"]=st.secrets["LANGCHAIN_PROJECT"]
16
 
17
- st.title("Web Scraping Assistant")
18
  st.write("This app helps you to extract data from HTML code using web scraping. It uses GPT-3.5-turbo to generate the code for you.")
19
  st.write("Contribute to this project on [GitHub](https://github.com/CognitiveLabs/GPT-auto-webscraping)")
20
 
@@ -22,7 +21,7 @@ with st.expander(label="Check out the video demo"):
22
  yt_video = st.video("https://www.youtube.com/watch?v=_zeCun4OlCc")
23
 
24
  info_text = """
25
- ### Quick start
26
  Fill the input with the HTML code you want to extract data from
27
  Example below:
28
  """
 
14
  os.environ["LANGCHAIN_API_KEY"]=st.secrets["LANGCHAIN_API_KEY"]
15
  os.environ["LANGCHAIN_PROJECT"]=st.secrets["LANGCHAIN_PROJECT"]
16
 
 
17
  st.write("This app helps you to extract data from HTML code using web scraping. It uses GPT-3.5-turbo to generate the code for you.")
18
  st.write("Contribute to this project on [GitHub](https://github.com/CognitiveLabs/GPT-auto-webscraping)")
19
 
 
21
  yt_video = st.video("https://www.youtube.com/watch?v=_zeCun4OlCc")
22
 
23
  info_text = """
24
+ *Quick start*
25
  Fill the input with the HTML code you want to extract data from
26
  Example below:
27
  """