find-the-animal / utils /frontend.py
Tuana's picture
attempting to add a sidebar
8ab7d9a
raw
history blame
No virus
477 Bytes
import streamlit as st
def build_sidebar():
sidebar = """
<p><br/><a href='https://github.com/TuanaCelik/find-the-animal'>Github project</a> - Based on <a href='https://github.com/deepset-ai/haystack'>Haystack</a></p>
</div>
"""
st.sidebar.markdown(sidebar, unsafe_allow_html=True)
def set_state_if_absent(key, value):
if key not in st.session_state:
st.session_state[key] = value
def reset_results(*args):
st.session_state.results = None