captain-awesome
commited on
Commit
•
4c8c217
1
Parent(s):
d38dc15
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.set_page_config(page_title= "Chat with websites", page_icon="🤖")
|
4 |
+
|
5 |
+
st.title("Chat with websites")
|
6 |
+
|
7 |
+
with st.sitebar:
|
8 |
+
st.header("Settings")
|
9 |
+
website_url = st.text_input("Website URL")
|
10 |
+
|