Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
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)
|