Fix SSE route dependency and align architecture docs
This commit is contained in:
15
backend/app/domain/conversation/__init__.py
Normal file
15
backend/app/domain/conversation/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""Initialize the app.domain.conversation package."""
|
||||
|
||||
from .models import AnswerResult, AnswerSource, ConversationMessage, ConversationSession
|
||||
from .ports import AnswerGenerator, ConversationStore
|
||||
# Keep package boundaries explicit so backend imports stay predictable.
|
||||
|
||||
|
||||
__all__ = [
|
||||
"AnswerGenerator",
|
||||
"AnswerResult",
|
||||
"AnswerSource",
|
||||
"ConversationMessage",
|
||||
"ConversationSession",
|
||||
"ConversationStore",
|
||||
]
|
||||
Reference in New Issue
Block a user