File size: 222 Bytes
4c8c217 |
1 2 3 4 5 6 7 8 9 10 |
import streamlit as st
st.set_page_config(page_title= "Chat with websites", page_icon="🤖")
st.title("Chat with websites")
with st.sitebar:
st.header("Settings")
website_url = st.text_input("Website URL")
|