Spaces:
No application file
No application file
| import gradio as gr | |
| class UISettings: | |
| def toggle_sidebar(state): | |
| state = not state | |
| return gr.update(visible=state), state | |
| def feedback(data: gr.LikeData): | |
| if data.liked: | |
| print("You upvoted this response: " + data.value) | |
| else: | |
| print("You downvoted this response: " + data.value) |