File size: 626 Bytes
32486dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import home
import streamlit as st
st.set_page_config(layout="wide")
st.sidebar.image('assets/img/textgrad_logo_1x.png', width=200)
st.sidebar.title("TextGrad Playground")
st.sidebar.markdown("## Menu")
PAGES = {
"π Home": home,
}
page = st.sidebar.radio("", list(PAGES.keys()))
st.sidebar.markdown("## Links")
st.sidebar.markdown("""
π [Paper](https://arxiv.org/abs/2406.07496)
π¨βπ» [Code](https://github.com/zou-group/textgrad)
βοΈ [API documentation](https://textgrad.readthedocs.io/en/latest/index.html)""")
PAGES[page].app() |