Remove an output from starred/favorites.
(log_index: int)
| 714 | |
| 715 | |
| 716 | def unstar_output(log_index: int): |
| 717 | """Remove an output from starred/favorites.""" |
| 718 | if 0 <= log_index < len(st.session_state.starred_outputs): |
| 719 | st.session_state.starred_outputs.pop(log_index) |
| 720 | # Save outputs after unstarring |
| 721 | save_outputs() |
| 722 | |
| 723 | |
| 724 | def validate_input_content(input_text: str) -> Tuple[bool, str]: |