Amith Adiraju
1. Added custom fine tuned model to provide item explanations is specific format.
5a29f4a
from streamlit import session_state as sst | |
def navigate_to(page: str) -> None: | |
""" | |
Function to set the current page in the state of streamlit. A helper for | |
simulating navigation in streamlit. | |
Parameters: | |
page: str, required. | |
Returns: | |
None | |
""" | |
sst["page"] = page |