9 lines
318 B
Python
9 lines
318 B
Python
"""Initialize the app.services.agent package."""
|
|
|
|
from .qa_agent import QAAgent, ask_compliance_question
|
|
from .session_manager import SessionManager, ChatSession
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
|
|
|
|
|
__all__ = ["QAAgent", "ask_compliance_question", "SessionManager", "ChatSession"]
|