captain-awesome's picture
Update app.py
edb84ad verified
raw
history blame
455 Bytes
import streamlit as st
st.set_page_config(page_title= "Chat with Websites", page_icon="🤖")
st.title("Chat with Websites")
with st.sidebar:
st.header("Settings")
website_url = st.text_input("Website URL")
openai_apikey = st.text_input("Enter your OpenAI API key")
st.chat_input("Type your message here...")
with st.chat_message("AI"):
st.write("Hello, how can I help you?")
with st.chat_message("AI"):
st.write("No")