MedicalChatbot_v2.0 / src /ui_settings.py
sxandie's picture
Upload 22 files
e899e0f verified
raw
history blame
987 Bytes
import gradio as gr
class UISettings:
"""
Utility class for managing UI settings.
This class provides static methods for toggling UI components, such as a sidebar and feedback.
"""
@staticmethod
def toggle_sidebar(state):
"""
Toggle the visibility state of a UI component.
Parameters:
state: The current state of the UI component.
Returns:
Tuple: A tuple containing the updated UI component state and the new state.
"""
state = not state
return gr.update(visible=state), state
@staticmethod
def feedback(data: gr.LikeData):
"""
Process user feedback on the generated response.
Parameters:
data (gr.LikeData): Gradio LikeData object containing user feedback.
"""
if data.liked:
print("You upvoted this response: " + data.value)
else:
print("You downvoted this response: " + data.value)