Best practice for sequence of user-inputs?

Actually got it working used the solution using st.State posted here

by @andfanilo

Basic idea is to hold on to various “expensive-to-compute” things, like models, data, etc in the state object, so they are preserved between runs triggered by user buttons/input.

2 Likes