Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

config.py 314 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
  1. import streamlit as st
  2. def page_config():
  3. # Set the page config
  4. st.set_page_config(
  5. page_title="Omdena Chatbot", # The title of the web page
  6. page_icon="💬", # The icon of the web page, can be an emoji or a file path
  7. initial_sidebar_state="expanded", # Expanded sidebar
  8. )
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...