123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- import logging
- from flask_restful import fields, marshal_with, reqparse # type: ignore
- from flask_restful.inputs import int_range # type: ignore
- from werkzeug.exceptions import InternalServerError, NotFound
- import services
- from controllers.web import api
- from controllers.web.error import (
- AppMoreLikeThisDisabledError,
- AppSuggestedQuestionsAfterAnswerDisabledError,
- CompletionRequestError,
- NotChatAppError,
- NotCompletionAppError,
- ProviderModelCurrentlyNotSupportError,
- ProviderNotInitializeError,
- ProviderQuotaExceededError,
- )
- from controllers.web.wraps import WebApiResource
- from core.app.entities.app_invoke_entities import InvokeFrom
- from core.errors.error import ModelCurrentlyNotSupportError, ProviderTokenNotInitError, QuotaExceededError
- from core.model_runtime.errors.invoke import InvokeError
- from fields.conversation_fields import message_file_fields
- from fields.message_fields import agent_thought_fields, feedback_fields, retriever_resource_fields
- from fields.raws import FilesContainedField
- from libs import helper
- from libs.helper import TimestampField, uuid_value
- from models.model import AppMode
- from services.app_generate_service import AppGenerateService
- from services.errors.app import MoreLikeThisDisabledError
- from services.errors.conversation import ConversationNotExistsError
- from services.errors.message import MessageNotExistsError, SuggestedQuestionsAfterAnswerDisabledError
- from services.message_service import MessageService
- class MessageListApi(WebApiResource):
- message_fields = {
- "id": fields.String,
- "conversation_id": fields.String,
- "parent_message_id": fields.String,
- "inputs": FilesContainedField,
- "query": fields.String,
- "answer": fields.String(attribute="re_sign_file_url_answer"),
- "message_files": fields.List(fields.Nested(message_file_fields)),
- "feedback": fields.Nested(feedback_fields, attribute="user_feedback", allow_null=True),
- "retriever_resources": fields.List(fields.Nested(retriever_resource_fields)),
- "created_at": TimestampField,
- "agent_thoughts": fields.List(fields.Nested(agent_thought_fields)),
- "status": fields.String,
- "error": fields.String,
- }
- message_infinite_scroll_pagination_fields = {
- "limit": fields.Integer,
- "has_more": fields.Boolean,
- "data": fields.List(fields.Nested(message_fields)),
- }
- @marshal_with(message_infinite_scroll_pagination_fields)
- def get(self, app_model, end_user):
- app_mode = AppMode.value_of(app_model.mode)
- if app_mode not in {AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT}:
- raise NotChatAppError()
- parser = reqparse.RequestParser()
- parser.add_argument("conversation_id", required=True, type=uuid_value, location="args")
- parser.add_argument("first_id", type=uuid_value, location="args")
- parser.add_argument("limit", type=int_range(1, 100), required=False, default=20, location="args")
- args = parser.parse_args()
- try:
- return MessageService.pagination_by_first_id(
- app_model, end_user, args["conversation_id"], args["first_id"], args["limit"]
- )
- except services.errors.conversation.ConversationNotExistsError:
- raise NotFound("Conversation Not Exists.")
- except services.errors.message.FirstMessageNotExistsError:
- raise NotFound("First Message Not Exists.")
- class MessageFeedbackApi(WebApiResource):
- def post(self, app_model, end_user, message_id):
- message_id = str(message_id)
- parser = reqparse.RequestParser()
- parser.add_argument("rating", type=str, choices=["like", "dislike", None], location="json")
- parser.add_argument("content", type=str, location="json", default=None)
- args = parser.parse_args()
- try:
- MessageService.create_feedback(
- app_model=app_model,
- message_id=message_id,
- user=end_user,
- rating=args.get("rating"),
- content=args.get("content"),
- )
- except services.errors.message.MessageNotExistsError:
- raise NotFound("Message Not Exists.")
- return {"result": "success"}
- class MessageMoreLikeThisApi(WebApiResource):
- def get(self, app_model, end_user, message_id):
- if app_model.mode != "completion":
- raise NotCompletionAppError()
- message_id = str(message_id)
- parser = reqparse.RequestParser()
- parser.add_argument(
- "response_mode", type=str, required=True, choices=["blocking", "streaming"], location="args"
- )
- args = parser.parse_args()
- streaming = args["response_mode"] == "streaming"
- try:
- response = AppGenerateService.generate_more_like_this(
- app_model=app_model,
- user=end_user,
- message_id=message_id,
- invoke_from=InvokeFrom.WEB_APP,
- streaming=streaming,
- )
- return helper.compact_generate_response(response)
- except MessageNotExistsError:
- raise NotFound("Message Not Exists.")
- except MoreLikeThisDisabledError:
- raise AppMoreLikeThisDisabledError()
- except ProviderTokenNotInitError as ex:
- raise ProviderNotInitializeError(ex.description)
- except QuotaExceededError:
- raise ProviderQuotaExceededError()
- except ModelCurrentlyNotSupportError:
- raise ProviderModelCurrentlyNotSupportError()
- except InvokeError as e:
- raise CompletionRequestError(e.description)
- except ValueError as e:
- raise e
- except Exception:
- logging.exception("internal server error.")
- raise InternalServerError()
- class MessageSuggestedQuestionApi(WebApiResource):
- def get(self, app_model, end_user, message_id):
- app_mode = AppMode.value_of(app_model.mode)
- if app_mode not in {AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT}:
- raise NotCompletionAppError()
- message_id = str(message_id)
- try:
- questions = MessageService.get_suggested_questions_after_answer(
- app_model=app_model, user=end_user, message_id=message_id, invoke_from=InvokeFrom.WEB_APP
- )
- except MessageNotExistsError:
- raise NotFound("Message not found")
- except ConversationNotExistsError:
- raise NotFound("Conversation not found")
- except SuggestedQuestionsAfterAnswerDisabledError:
- raise AppSuggestedQuestionsAfterAnswerDisabledError()
- except ProviderTokenNotInitError as ex:
- raise ProviderNotInitializeError(ex.description)
- except QuotaExceededError:
- raise ProviderQuotaExceededError()
- except ModelCurrentlyNotSupportError:
- raise ProviderModelCurrentlyNotSupportError()
- except InvokeError as e:
- raise CompletionRequestError(e.description)
- except Exception:
- logging.exception("internal server error.")
- raise InternalServerError()
- return {"data": questions}
- api.add_resource(MessageListApi, "/messages")
- api.add_resource(MessageFeedbackApi, "/messages/<uuid:message_id>/feedbacks")
- api.add_resource(MessageMoreLikeThisApi, "/messages/<uuid:message_id>/more-like-this")
- api.add_resource(MessageSuggestedQuestionApi, "/messages/<uuid:message_id>/suggested-questions")
|