"""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()