llama-openai-demo / data /kb /FAQ /remove-streamlit-app-title.md
eagle0504's picture
app updated
746d2f1

A newer version of the Streamlit SDK is available: 1.48.1

Upgrade
metadata
title: How to remove "路 Streamlit" from the app title?
slug: /knowledge-base/using-streamlit/remove-streamlit-app-title

How to remove "路 Streamlit" from the app title?

Using st.set_page_config to assign the page title will not append "路 Streamlit" to that title. E.g.:

import streamlit as st

st.set_page_config(
   page_title="Ex-stream-ly Cool App",
   page_icon="馃",
   layout="wide",
   initial_sidebar_state="expanded",
)