Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Arif-Badhon
/
llm-data-analyzer
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ef17ebc
llm-data-analyzer
/
frontend
/
pages
/
01_chat.py
Arif
Added frontend pages and links
aa5cda2
13 days ago
raw
Copy download link
history
blame
Safe
178 Bytes
"""Chat page"""
import
streamlit
as
st
from
components
import
render_sidebar, render_chat
st.set_page_config(page_title=
"Chat"
, page_icon=
"π¬"
)
render_sidebar()
render_chat()