moving the MessageStatus class from the models.model module to models.enums module (#21867)

Signed-off-by: neatguycoding <15627489+NeatGuyCoding@users.noreply.github.com>
This commit is contained in:
NeatGuyCoding
2025-07-03 13:56:23 +08:00
committed by GitHub
parent 1af3d40c1a
commit ebc4fdc4b2
5 changed files with 16 additions and 13 deletions

View File

@@ -11,7 +11,8 @@ from constants import AUDIO_EXTENSIONS
from core.model_manager import ModelManager
from core.model_runtime.entities.model_entities import ModelType
from extensions.ext_database import db
from models.model import App, AppMode, AppModelConfig, Message, MessageStatus
from models.enums import MessageStatus
from models.model import App, AppMode, AppModelConfig, Message
from services.errors.audio import (
AudioTooLargeServiceError,
NoAudioUploadedServiceError,