Source code for maeser.controllers.feedback_api

# SPDX-License-Identifier: LGPL-3.0-or-later

"""Module for handling feedback for messages through a controller.

This module defines a controller function that processes feedback
for messages. The feedback includes information such as the branch,
session ID, message, whether it is a like or dislike, and the index
of the message.
"""

from maeser.chat.chat_session_manager import ChatSessionManager
from flask import request


[docs] def controller(session_handler: ChatSessionManager) -> dict: """ Handles feedback for messages. Uses flask.request and expects a post request with the following fields: - "**branch**" (*str*): The chat branch of the session. - "**session_id**" (*str*): The ID of the chat session. - "**message**" (*str*): The text content of the message that received feedback. - "**like**" (*bool*): *True* if the feedback was a like; *False* if the feedback was a dislike. - "**index**" (*int*): The index of the message in the conversation history. Args: session_handler (ChatSessionManager): The session handler to manage chat sessions and feedback. Returns: dict: Status of the feedback submission. Returns ``{'status': 'success'}`` if the feedback submission was successful. """ data = request.get_json() branch = data.get("branch") session_id = data.get("session_id") message = data.get("message") like = data.get("like") index = int(data.get("index")) print( f"Received feedback: {'Like' if like else 'Dislike'} for message: {message} at index: {index}" ) # Handle the feedback (e.g., save to a database, log it, etc.) session_handler.add_feedback(branch, session_id, index, like) return {"status": "success"}