8 lines
213 B
Python
8 lines
213 B
Python
"""Initialize the app.application.agent package."""
|
|
|
|
from .services import AgentConversationService
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
|
|
|
|
|
__all__ = ["AgentConversationService"]
|