pvyas96 commited on
Commit
aa61101
1 Parent(s): 73fe546

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -9
app.py CHANGED
@@ -1,9 +1,11 @@
1
- import streamlit as st
2
-
3
- readme = """
4
- This is a Simple chat application using streamlit and huggingface api
5
- watch the below video to get started
6
-
7
- """
8
-
9
- st.write(readme)
 
 
 
1
+ import streamlit as st
2
+
3
+ st.set_page_config(page_title="Simple LLM Chatbot", page_icon="./icon.png", layout="centered", initial_sidebar_state="auto")
4
+
5
+ readme = """
6
+ This is a Simple chat application using streamlit and huggingface api
7
+ watch the below video to get started
8
+
9
+ """
10
+
11
+ st.write(readme)