Can we Persist filter(s) applied on Grid and restore it on page refresh

grid_response = AgGrid(
df_display,
gridOptions=grid_options,
height=400,
width=‘100%’,
update_mode=GridUpdateMode.MODEL_CHANGED,
reload_data=False, # Keeps user interactions intact
columns_state=columns_state
)
Any change to make here or any other way?

Refer below Filter to make it persist on Page refresh or if I run the code after few days , it reads from json file or something and applies it again.