File size: 318 Bytes
f4f6aba
 
 
 
 
 
31a1df6
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""The app.py used with streamlit

This ties together the different parts of the app.

"""

import streamlit as st

from start import start_input_form
from edit import edit_input_form

st.header("Skops model card creator")

if not st.session_state.get("model_card"):
    start_input_form()
else:
    edit_input_form()