forked from retoor/devplacepy
This commit introduces a comprehensive set of new features including API key authentication with CLI management commands (get, reset, backfill), a Devii agentic assistant with WebSocket terminal and session bootstrap, an OpenAI-compatible LLM gateway service, and an admin service management panel. It also adds Playwright browser automation for bot support, configures internal gateway URLs, refactors content editing/deletion to support JSON API responses, and updates documentation across AGENTS.md, README.md, and the developer docs site.
8 lines
241 B
Python
8 lines
241 B
Python
# retoor <retoor@molodetz.nl>
|
|
|
|
from .catalog import ACTIONS, PLATFORM_CATALOG
|
|
from .dispatcher import Dispatcher
|
|
from .spec import Action, Catalog, Param
|
|
|
|
__all__ = ["ACTIONS", "PLATFORM_CATALOG", "Dispatcher", "Action", "Catalog", "Param"]
|