Spaces:
Sleeping
Sleeping
martianband1t
commited on
Commit
β’
7bd4345
1
Parent(s):
e4a9e8b
Update app.py
Browse files
app.py
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
import streamlit as st
|
2 |
from streamlit.logger import get_logger
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
def run():
|
8 |
-
st.set_page_config(
|
9 |
page_title="Hello",
|
10 |
page_icon="π",
|
11 |
)
|
12 |
|
|
|
|
|
|
|
|
|
13 |
with st.sidebar:
|
14 |
messages = st.container(height=300)
|
15 |
if prompt := st.chat_input("Say something"):
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit.logger import get_logger
|
3 |
|
4 |
+
st.set_page_config(
|
|
|
|
|
|
|
|
|
5 |
page_title="Hello",
|
6 |
page_icon="π",
|
7 |
)
|
8 |
|
9 |
+
LOGGER = get_logger(__name__)
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
with st.sidebar:
|
14 |
messages = st.container(height=300)
|
15 |
if prompt := st.chat_input("Say something"):
|