15 lines
270 B
Python
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",
|
|
]
|