Skip to content

Commit

Permalink
add scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
VinciGit00 committed Feb 21, 2024
1 parent fd95524 commit 55da26f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import base64
import streamlit as st

with st.sidebar:
st.write("**Usage**")
st.write("Add the api key")
st.write("Example of tasks:")
st.write("- a")
st.write("- b")

st.title("Scrapegraph-ai")
left_co, cent_co,last_co = st.columns(3)
with cent_co:
Expand All @@ -11,11 +18,7 @@

link = st.text_input("Link to scrape")

genre = st.radio(
"What operation you want do?",
["a", "b", "c"],
index=1,
)
link = st.text_input("Write the prompt")

if st.button("Run th program", type="primary"):
st.write('DO something')
Expand Down

0 comments on commit 55da26f

Please sign in to comment.