Files
oai/oai/core/__init__.py
2026-02-03 08:57:16 +01:00

15 lines
270 B
Python

"""
Core functionality for oAI.
This module provides the main session management and AI client
classes that power the chat application.
"""
from oai.core.session import ChatSession
from oai.core.client import AIClient
__all__ = [
"ChatSession",
"AIClient",
]