27 lines
673 B
Python
27 lines
673 B
Python
"""
|
|
oAI - OpenRouter AI Chat Client
|
|
|
|
A feature-rich terminal-based chat application that provides an interactive CLI
|
|
interface to OpenRouter's unified AI API with advanced Model Context Protocol (MCP)
|
|
integration for filesystem and database access.
|
|
|
|
Author: Rune
|
|
License: MIT
|
|
"""
|
|
|
|
__version__ = "2.1.0"
|
|
__author__ = "Rune"
|
|
__license__ = "MIT"
|
|
|
|
# Lazy imports to avoid circular dependencies and improve startup time
|
|
# Full imports are available via submodules:
|
|
# from oai.config import Settings, Database
|
|
# from oai.providers import OpenRouterProvider, AIProvider
|
|
# from oai.mcp import MCPManager
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"__author__",
|
|
"__license__",
|
|
]
|