LocalStateEffect# class penzai.deprecated.v1.data_effects.local_state.LocalStateEffect[source]# Bases: Protocol[_T] Protocol for a local state effect. Methods __init__(*args, **kwargs) get() Gets the current state of the local variable. set(value) Sets the current state of the local variable. get() → _T[source]# Gets the current state of the local variable. set(value: _T)[source]# Sets the current state of the local variable.