80dc74c 468f744 4f55ca2 468f744 80dc74c 468f744 80dc74c 468f744
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st from app_lib.about import about from app_lib.demo import demo def main(): demo_tab, about_tab = st.tabs(["Demo", "How Does it Work?"]) with demo_tab: demo() with about_tab: about()