Spaces:
No application file
No application file
File size: 379 Bytes
ddf4814 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import gradio as gr
class UISettings:
@staticmethod
def toggle_sidebar(state):
state = not state
return gr.update(visible=state), state
@staticmethod
def feedback(data: gr.LikeData):
if data.liked:
print("You upvoted this response: " + data.value)
else:
print("You downvoted this response: " + data.value) |