2024-08-20 17:55:44 +08:00
|
|
|
from datetime import datetime, timezone
|
2024-01-12 12:34:01 +08:00
|
|
|
from typing import Optional, Union
|
2023-05-15 08:51:32 +08:00
|
|
|
|
2024-08-20 17:55:44 +08:00
|
|
|
from sqlalchemy import asc, desc, or_
|
2024-04-09 17:04:48 +08:00
|
|
|
|
|
|
|
from core.app.entities.app_invoke_entities import InvokeFrom
|
2024-04-08 18:51:46 +08:00
|
|
|
from core.llm_generator.llm_generator import LLMGenerator
|
2023-05-15 08:51:32 +08:00
|
|
|
from extensions.ext_database import db
|
2024-01-12 12:34:01 +08:00
|
|
|
from libs.infinite_scroll_pagination import InfiniteScrollPagination
|
2023-05-15 08:51:32 +08:00
|
|
|
from models.account import Account
|
2024-01-12 12:34:01 +08:00
|
|
|
from models.model import App, Conversation, EndUser, Message
|
2023-05-15 08:51:32 +08:00
|
|
|
from services.errors.conversation import ConversationNotExistsError, LastConversationNotExistsError
|
2023-11-13 22:05:46 +08:00
|
|
|
from services.errors.message import MessageNotExistsError
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ConversationService:
|
|
|
|
@classmethod
|
2023-12-03 20:59:13 +08:00
|
|
|
def pagination_by_last_id(cls, app_model: App, user: Optional[Union[Account, EndUser]],
|
2023-05-15 08:51:32 +08:00
|
|
|
last_id: Optional[str], limit: int,
|
2024-04-09 17:04:48 +08:00
|
|
|
invoke_from: InvokeFrom,
|
|
|
|
include_ids: Optional[list] = None,
|
2024-08-20 17:55:44 +08:00
|
|
|
exclude_ids: Optional[list] = None,
|
|
|
|
sort_by: str = '-updated_at') -> InfiniteScrollPagination:
|
2023-05-15 08:51:32 +08:00
|
|
|
if not user:
|
|
|
|
return InfiniteScrollPagination(data=[], limit=limit, has_more=False)
|
|
|
|
|
|
|
|
base_query = db.session.query(Conversation).filter(
|
2023-06-28 13:31:51 +08:00
|
|
|
Conversation.is_deleted == False,
|
2023-05-15 08:51:32 +08:00
|
|
|
Conversation.app_id == app_model.id,
|
|
|
|
Conversation.from_source == ('api' if isinstance(user, EndUser) else 'console'),
|
|
|
|
Conversation.from_end_user_id == (user.id if isinstance(user, EndUser) else None),
|
|
|
|
Conversation.from_account_id == (user.id if isinstance(user, Account) else None),
|
2024-04-09 17:04:48 +08:00
|
|
|
or_(Conversation.invoke_from.is_(None), Conversation.invoke_from == invoke_from.value)
|
2023-05-15 08:51:32 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
if include_ids is not None:
|
|
|
|
base_query = base_query.filter(Conversation.id.in_(include_ids))
|
|
|
|
|
|
|
|
if exclude_ids is not None:
|
|
|
|
base_query = base_query.filter(~Conversation.id.in_(exclude_ids))
|
|
|
|
|
2024-08-20 17:55:44 +08:00
|
|
|
# define sort fields and directions
|
|
|
|
sort_field, sort_direction = cls._get_sort_params(sort_by)
|
2023-05-15 08:51:32 +08:00
|
|
|
|
2024-08-20 17:55:44 +08:00
|
|
|
if last_id:
|
|
|
|
last_conversation = base_query.filter(Conversation.id == last_id).first()
|
2023-05-15 08:51:32 +08:00
|
|
|
if not last_conversation:
|
|
|
|
raise LastConversationNotExistsError()
|
|
|
|
|
2024-08-20 17:55:44 +08:00
|
|
|
# build filters based on sorting
|
|
|
|
filter_condition = cls._build_filter_condition(sort_field, sort_direction, last_conversation)
|
|
|
|
base_query = base_query.filter(filter_condition)
|
|
|
|
|
|
|
|
base_query = base_query.order_by(sort_direction(getattr(Conversation, sort_field)))
|
|
|
|
|
|
|
|
conversations = base_query.limit(limit).all()
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
has_more = False
|
|
|
|
if len(conversations) == limit:
|
2024-08-20 17:55:44 +08:00
|
|
|
current_page_last_conversation = conversations[-1]
|
|
|
|
rest_filter_condition = cls._build_filter_condition(sort_field, sort_direction,
|
|
|
|
current_page_last_conversation, is_next_page=True)
|
|
|
|
rest_count = base_query.filter(rest_filter_condition).count()
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
if rest_count > 0:
|
|
|
|
has_more = True
|
|
|
|
|
|
|
|
return InfiniteScrollPagination(
|
|
|
|
data=conversations,
|
|
|
|
limit=limit,
|
|
|
|
has_more=has_more
|
|
|
|
)
|
|
|
|
|
2024-08-20 17:55:44 +08:00
|
|
|
@classmethod
|
|
|
|
def _get_sort_params(cls, sort_by: str) -> tuple[str, callable]:
|
|
|
|
if sort_by.startswith('-'):
|
|
|
|
return sort_by[1:], desc
|
|
|
|
return sort_by, asc
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _build_filter_condition(cls, sort_field: str, sort_direction: callable, reference_conversation: Conversation,
|
|
|
|
is_next_page: bool = False):
|
|
|
|
field_value = getattr(reference_conversation, sort_field)
|
|
|
|
if (sort_direction == desc and not is_next_page) or (sort_direction == asc and is_next_page):
|
|
|
|
return getattr(Conversation, sort_field) < field_value
|
|
|
|
else:
|
|
|
|
return getattr(Conversation, sort_field) > field_value
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
@classmethod
|
|
|
|
def rename(cls, app_model: App, conversation_id: str,
|
2023-12-03 20:59:13 +08:00
|
|
|
user: Optional[Union[Account, EndUser]], name: str, auto_generate: bool):
|
2023-05-15 08:51:32 +08:00
|
|
|
conversation = cls.get_conversation(app_model, conversation_id, user)
|
|
|
|
|
2023-11-13 22:05:46 +08:00
|
|
|
if auto_generate:
|
|
|
|
return cls.auto_generate_name(app_model, conversation)
|
|
|
|
else:
|
|
|
|
conversation.name = name
|
2024-08-20 17:55:44 +08:00
|
|
|
conversation.updated_at = datetime.now(timezone.utc).replace(tzinfo=None)
|
2023-11-13 22:05:46 +08:00
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
return conversation
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def auto_generate_name(cls, app_model: App, conversation: Conversation):
|
|
|
|
# get conversation first message
|
|
|
|
message = db.session.query(Message) \
|
|
|
|
.filter(
|
2024-08-20 17:55:44 +08:00
|
|
|
Message.app_id == app_model.id,
|
|
|
|
Message.conversation_id == conversation.id
|
|
|
|
).order_by(Message.created_at.asc()).first()
|
2023-11-13 22:05:46 +08:00
|
|
|
|
|
|
|
if not message:
|
|
|
|
raise MessageNotExistsError()
|
|
|
|
|
|
|
|
# generate conversation name
|
|
|
|
try:
|
2024-06-26 17:33:29 +08:00
|
|
|
name = LLMGenerator.generate_conversation_name(
|
|
|
|
app_model.tenant_id, message.query, conversation.id, app_model.id
|
|
|
|
)
|
2023-11-13 22:05:46 +08:00
|
|
|
conversation.name = name
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
return conversation
|
|
|
|
|
|
|
|
@classmethod
|
2023-12-03 20:59:13 +08:00
|
|
|
def get_conversation(cls, app_model: App, conversation_id: str, user: Optional[Union[Account, EndUser]]):
|
2023-05-15 08:51:32 +08:00
|
|
|
conversation = db.session.query(Conversation) \
|
|
|
|
.filter(
|
|
|
|
Conversation.id == conversation_id,
|
|
|
|
Conversation.app_id == app_model.id,
|
|
|
|
Conversation.from_source == ('api' if isinstance(user, EndUser) else 'console'),
|
|
|
|
Conversation.from_end_user_id == (user.id if isinstance(user, EndUser) else None),
|
|
|
|
Conversation.from_account_id == (user.id if isinstance(user, Account) else None),
|
2023-06-28 13:31:51 +08:00
|
|
|
Conversation.is_deleted == False
|
2023-05-15 08:51:32 +08:00
|
|
|
).first()
|
|
|
|
|
|
|
|
if not conversation:
|
|
|
|
raise ConversationNotExistsError()
|
|
|
|
|
|
|
|
return conversation
|
|
|
|
|
|
|
|
@classmethod
|
2023-12-03 20:59:13 +08:00
|
|
|
def delete(cls, app_model: App, conversation_id: str, user: Optional[Union[Account, EndUser]]):
|
2023-05-15 08:51:32 +08:00
|
|
|
conversation = cls.get_conversation(app_model, conversation_id, user)
|
|
|
|
|
2023-06-28 13:31:51 +08:00
|
|
|
conversation.is_deleted = True
|
2023-05-15 08:51:32 +08:00
|
|
|
db.session.commit()
|