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.
11 lines
616 B
HTML
11 lines
616 B
HTML
<section class="endpoint-card" id="{{ endpoint.id }}">
|
|
<header class="endpoint-head">
|
|
<span class="method-badge method-{{ endpoint.method|lower }}">{{ endpoint.method }}</span>
|
|
<code class="endpoint-path">{{ endpoint.path }}</code>
|
|
<span class="auth-badge auth-{{ endpoint.auth }}" title="Minimal role required to call this endpoint">Minimal role: {{ endpoint.min_role }}</span>
|
|
</header>
|
|
<h3 class="endpoint-title">{{ endpoint.title }}</h3>
|
|
<p class="endpoint-summary">{{ endpoint.summary }}</p>
|
|
<div data-api-tester data-config='{{ endpoint|tojson }}'></div>
|
|
</section>
|