""" Command system for oAI. This module provides a command registry and handler system for processing slash commands in the chat interface. """ from oai.commands.registry import ( Command, CommandRegistry, CommandContext, CommandResult, registry, ) from oai.commands.handlers import register_all_commands __all__ = [ "Command", "CommandRegistry", "CommandContext", "CommandResult", "registry", "register_all_commands", ]