2023-05-25 15:54:45 +08:00
|
|
|
import logging
|
2024-04-12 16:22:24 +08:00
|
|
|
from datetime import datetime, timezone
|
2023-05-25 15:54:45 +08:00
|
|
|
|
2024-02-06 13:21:13 +08:00
|
|
|
from flask_login import current_user
|
|
|
|
from flask_restful import reqparse
|
|
|
|
from werkzeug.exceptions import InternalServerError, NotFound
|
|
|
|
|
2023-05-25 15:54:45 +08:00
|
|
|
import services
|
|
|
|
from controllers.console import api
|
2024-02-06 13:21:13 +08:00
|
|
|
from controllers.console.app.error import (
|
|
|
|
AppUnavailableError,
|
|
|
|
CompletionRequestError,
|
|
|
|
ConversationCompletedError,
|
|
|
|
ProviderModelCurrentlyNotSupportError,
|
|
|
|
ProviderNotInitializeError,
|
|
|
|
ProviderQuotaExceededError,
|
|
|
|
)
|
2024-01-12 12:34:01 +08:00
|
|
|
from controllers.console.explore.error import NotChatAppError, NotCompletionAppError
|
2023-05-25 15:54:45 +08:00
|
|
|
from controllers.console.explore.wraps import InstalledAppResource
|
2024-04-08 18:51:46 +08:00
|
|
|
from core.app.apps.base_app_queue_manager import AppQueueManager
|
|
|
|
from core.app.entities.app_invoke_entities import InvokeFrom
|
2024-01-12 12:34:01 +08:00
|
|
|
from core.errors.error import ModelCurrentlyNotSupportError, ProviderTokenNotInitError, QuotaExceededError
|
2024-01-02 23:42:00 +08:00
|
|
|
from core.model_runtime.errors.invoke import InvokeError
|
2023-11-13 22:05:46 +08:00
|
|
|
from extensions.ext_database import db
|
2024-04-08 18:51:46 +08:00
|
|
|
from libs import helper
|
2023-05-25 15:54:45 +08:00
|
|
|
from libs.helper import uuid_value
|
2024-04-08 18:51:46 +08:00
|
|
|
from models.model import AppMode
|
|
|
|
from services.app_generate_service import AppGenerateService
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
# define completion api for user
|
|
|
|
class CompletionApi(InstalledAppResource):
|
|
|
|
|
|
|
|
def post(self, installed_app):
|
|
|
|
app_model = installed_app.app
|
|
|
|
if app_model.mode != 'completion':
|
|
|
|
raise NotCompletionAppError()
|
|
|
|
|
|
|
|
parser = reqparse.RequestParser()
|
|
|
|
parser.add_argument('inputs', type=dict, required=True, location='json')
|
2023-09-10 00:12:34 +08:00
|
|
|
parser.add_argument('query', type=str, location='json', default='')
|
2023-11-13 22:05:46 +08:00
|
|
|
parser.add_argument('files', type=list, required=False, location='json')
|
2023-05-25 15:54:45 +08:00
|
|
|
parser.add_argument('response_mode', type=str, choices=['blocking', 'streaming'], location='json')
|
2023-09-10 15:17:43 +08:00
|
|
|
parser.add_argument('retriever_from', type=str, required=False, default='explore_app', location='json')
|
2023-05-25 15:54:45 +08:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
streaming = args['response_mode'] == 'streaming'
|
2023-11-13 22:05:46 +08:00
|
|
|
args['auto_generate_name'] = False
|
|
|
|
|
2024-04-12 16:22:24 +08:00
|
|
|
installed_app.last_used_at = datetime.now(timezone.utc).replace(tzinfo=None)
|
2023-11-13 22:05:46 +08:00
|
|
|
db.session.commit()
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
try:
|
2024-04-08 18:51:46 +08:00
|
|
|
response = AppGenerateService.generate(
|
2023-05-25 15:54:45 +08:00
|
|
|
app_model=app_model,
|
|
|
|
user=current_user,
|
|
|
|
args=args,
|
2024-01-02 23:42:00 +08:00
|
|
|
invoke_from=InvokeFrom.EXPLORE,
|
2023-05-25 15:54:45 +08:00
|
|
|
streaming=streaming
|
|
|
|
)
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
return helper.compact_generate_response(response)
|
2023-05-25 15:54:45 +08:00
|
|
|
except services.errors.conversation.ConversationNotExistsError:
|
|
|
|
raise NotFound("Conversation Not Exists.")
|
|
|
|
except services.errors.conversation.ConversationCompletedError:
|
|
|
|
raise ConversationCompletedError()
|
|
|
|
except services.errors.app_model_config.AppModelConfigBrokenError:
|
|
|
|
logging.exception("App model config broken.")
|
|
|
|
raise AppUnavailableError()
|
2023-07-17 00:14:19 +08:00
|
|
|
except ProviderTokenNotInitError as ex:
|
|
|
|
raise ProviderNotInitializeError(ex.description)
|
2023-05-25 15:54:45 +08:00
|
|
|
except QuotaExceededError:
|
|
|
|
raise ProviderQuotaExceededError()
|
|
|
|
except ModelCurrentlyNotSupportError:
|
|
|
|
raise ProviderModelCurrentlyNotSupportError()
|
2024-01-02 23:42:00 +08:00
|
|
|
except InvokeError as e:
|
2024-01-04 17:49:55 +08:00
|
|
|
raise CompletionRequestError(e.description)
|
2023-05-25 15:54:45 +08:00
|
|
|
except ValueError as e:
|
|
|
|
raise e
|
|
|
|
except Exception as e:
|
|
|
|
logging.exception("internal server error.")
|
|
|
|
raise InternalServerError()
|
|
|
|
|
|
|
|
|
|
|
|
class CompletionStopApi(InstalledAppResource):
|
|
|
|
def post(self, installed_app, task_id):
|
|
|
|
app_model = installed_app.app
|
|
|
|
if app_model.mode != 'completion':
|
|
|
|
raise NotCompletionAppError()
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
AppQueueManager.set_stop_flag(task_id, InvokeFrom.EXPLORE, current_user.id)
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
return {'result': 'success'}, 200
|
|
|
|
|
|
|
|
|
|
|
|
class ChatApi(InstalledAppResource):
|
|
|
|
def post(self, installed_app):
|
|
|
|
app_model = installed_app.app
|
2024-04-08 18:51:46 +08:00
|
|
|
app_mode = AppMode.value_of(app_model.mode)
|
|
|
|
if app_mode not in [AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT]:
|
2023-05-25 15:54:45 +08:00
|
|
|
raise NotChatAppError()
|
|
|
|
|
|
|
|
parser = reqparse.RequestParser()
|
|
|
|
parser.add_argument('inputs', type=dict, required=True, location='json')
|
|
|
|
parser.add_argument('query', type=str, required=True, location='json')
|
2023-11-13 22:05:46 +08:00
|
|
|
parser.add_argument('files', type=list, required=False, location='json')
|
2023-05-25 15:54:45 +08:00
|
|
|
parser.add_argument('conversation_id', type=uuid_value, location='json')
|
2023-09-10 15:17:43 +08:00
|
|
|
parser.add_argument('retriever_from', type=str, required=False, default='explore_app', location='json')
|
2023-05-25 15:54:45 +08:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2023-11-13 22:05:46 +08:00
|
|
|
args['auto_generate_name'] = False
|
|
|
|
|
2024-04-12 16:22:24 +08:00
|
|
|
installed_app.last_used_at = datetime.now(timezone.utc).replace(tzinfo=None)
|
2023-11-13 22:05:46 +08:00
|
|
|
db.session.commit()
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
try:
|
2024-04-08 18:51:46 +08:00
|
|
|
response = AppGenerateService.generate(
|
2023-05-25 15:54:45 +08:00
|
|
|
app_model=app_model,
|
|
|
|
user=current_user,
|
|
|
|
args=args,
|
2024-01-02 23:42:00 +08:00
|
|
|
invoke_from=InvokeFrom.EXPLORE,
|
2024-04-08 18:51:46 +08:00
|
|
|
streaming=True
|
2023-05-25 15:54:45 +08:00
|
|
|
)
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
return helper.compact_generate_response(response)
|
2023-05-25 15:54:45 +08:00
|
|
|
except services.errors.conversation.ConversationNotExistsError:
|
|
|
|
raise NotFound("Conversation Not Exists.")
|
|
|
|
except services.errors.conversation.ConversationCompletedError:
|
|
|
|
raise ConversationCompletedError()
|
|
|
|
except services.errors.app_model_config.AppModelConfigBrokenError:
|
|
|
|
logging.exception("App model config broken.")
|
|
|
|
raise AppUnavailableError()
|
2023-07-17 00:14:19 +08:00
|
|
|
except ProviderTokenNotInitError as ex:
|
|
|
|
raise ProviderNotInitializeError(ex.description)
|
2023-05-25 15:54:45 +08:00
|
|
|
except QuotaExceededError:
|
|
|
|
raise ProviderQuotaExceededError()
|
|
|
|
except ModelCurrentlyNotSupportError:
|
|
|
|
raise ProviderModelCurrentlyNotSupportError()
|
2024-01-02 23:42:00 +08:00
|
|
|
except InvokeError as e:
|
2024-01-04 17:49:55 +08:00
|
|
|
raise CompletionRequestError(e.description)
|
2023-05-25 15:54:45 +08:00
|
|
|
except ValueError as e:
|
|
|
|
raise e
|
|
|
|
except Exception as e:
|
|
|
|
logging.exception("internal server error.")
|
|
|
|
raise InternalServerError()
|
|
|
|
|
|
|
|
|
|
|
|
class ChatStopApi(InstalledAppResource):
|
|
|
|
def post(self, installed_app, task_id):
|
|
|
|
app_model = installed_app.app
|
2024-04-08 18:51:46 +08:00
|
|
|
app_mode = AppMode.value_of(app_model.mode)
|
|
|
|
if app_mode not in [AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT]:
|
2023-05-25 15:54:45 +08:00
|
|
|
raise NotChatAppError()
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
AppQueueManager.set_stop_flag(task_id, InvokeFrom.EXPLORE, current_user.id)
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
return {'result': 'success'}, 200
|
|
|
|
|
|
|
|
|
|
|
|
api.add_resource(CompletionApi, '/installed-apps/<uuid:installed_app_id>/completion-messages', endpoint='installed_app_completion')
|
|
|
|
api.add_resource(CompletionStopApi, '/installed-apps/<uuid:installed_app_id>/completion-messages/<string:task_id>/stop', endpoint='installed_app_stop_completion')
|
|
|
|
api.add_resource(ChatApi, '/installed-apps/<uuid:installed_app_id>/chat-messages', endpoint='installed_app_chat_completion')
|
|
|
|
api.add_resource(ChatStopApi, '/installed-apps/<uuid:installed_app_id>/chat-messages/<string:task_id>/stop', endpoint='installed_app_stop_chat_completion')
|