Coverage for src / osiris_cli / __init__.py: 0%
5 statements
« prev ^ index » next coverage.py v7.13.0, created at 2025-12-31 05:01 +0200
« prev ^ index » next coverage.py v7.13.0, created at 2025-12-31 05:01 +0200
1"""
2Osiris CLI - Sovereign AGI Terminal Interface
4A modern, interactive CLI for AI conversations with advanced tool integration,
5session management, and professional dashboard interface.
6"""
8__version__ = "4.0.0"
9__author__ = "Osiris Collective"
10__email__ = "contact@theosirislabs.com"
12# Make version accessible
13from . import config, client, tools, session, context
15__all__ = [
16 "__version__",
17 "config",
18 "client",
19 "tools",
20 "session",
21 "context",
22]