Paramus Copilot Extension API#
Welcome to the Paramus Copilot Extension API documentation.
Version: 1.0.0
This documentation covers the extension framework that allows you to interact with the Paramus system through well-defined APIs.Contents:
Quick Start#
The Paramus Extension Framework provides a self-documenting API system with both programmatic access and JSON-RPC endpoints. Extension classes can register themselves and provide comprehensive documentation through a standardized interface.
Basic Usage#
from paramus.extension.api_surface.command import MessageTerminal, UIBridge
# Send a message to the terminal
terminal = MessageTerminal()
terminal.send_message("Hello from extension!")
# Trigger UI actions
ui = UIBridge()
ui.trigger_new_button()
ui.send_notification("Operation completed!")