Files
devplacepy/devplacepy/templates/devii.html
T
retoor e0535bb7c5 feat: add api key auth, devii agent, openai gateway, and admin service management
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.
2026-06-08 15:38:33 +00:00

10 lines
499 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="devii-page">
<h1>Devii</h1>
<p>Devii is an agentic assistant for DevPlace. {% if user %}It operates your own account through conversation.{% else %}You are in a sandbox session. Sign in to let Devii operate your own account.{% endif %}</p>
<button type="button" class="btn btn-primary" data-devii-open><span class="icon">🤖</span> Open the Devii terminal</button>
</div>
<span data-devii-autoopen hidden></span>
{% endblock %}