|
import streamlit as st |
|
import os |
|
import pandas as pd |
|
import re |
|
from time import time |
|
import warnings |
|
warnings.filterwarnings("ignore", category=FutureWarning) |
|
|
|
|
|
st.set_page_config( |
|
page_title="Intent Detection", |
|
page_icon="🤖", |
|
layout="centered", |
|
initial_sidebar_state="expanded", |
|
) |
|
|
|
|
|
st.sidebar.title("Intent Detection ") |
|
st.sidebar.title("🤖 🛠️ 🕹️") |
|
|
|
|
|
st.markdown( |
|
""" |
|
<style> |
|
.footer { |
|
position: fixed; |
|
left: 0; |
|
bottom: 0; |
|
width: 100%; |
|
background-color: #f0f0f0; |
|
color: black; |
|
text-align: center; |
|
padding: 10px; |
|
font-size: 12px; |
|
} |
|
</style> |
|
""", |
|
unsafe_allow_html=True, |
|
) |
|
|
|
st.markdown( |
|
""" |
|
<div class="footer"> |
|
<p>© 2024 IBM. All rights reserved.</p> |
|
</div> |
|
""", |
|
unsafe_allow_html=True, |
|
) |
|
|
|
|
|
st.title("Intent Detection Flow") |
|
|
|
|
|
st.header("Selectează modelul din meniul din stanga 👈") |
|
|
|
st.stop() |
|
|