import streamlit as st import os import pandas as pd import re from time import time import warnings warnings.filterwarnings("ignore", category=FutureWarning) # Set the page configuration st.set_page_config( page_title="Intent Detection", page_icon="🤖", layout="centered", initial_sidebar_state="expanded", ) # Set the sidebar st.sidebar.title("Intent Detection ") st.sidebar.title("🤖 🛠️ 🕹️") # Add a footer st.markdown( """ """, unsafe_allow_html=True, ) st.markdown( """
""", unsafe_allow_html=True, ) # Title of the app st.title("Intent Detection Flow") # Select the trained model from left page st.header("Selectează modelul din meniul din stanga 👈") st.stop()