gskaro-v1/internal/server/web/index.html

30 lines
1.1 KiB
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>gskaro — Developer Assistant</title>
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
</head>
<body hx-boost="true">
<div id="top-bar" style="display:flex; gap:16px; align-items:center; margin-bottom:16px;">
<div>
<button hx-get="/api/stats" hx-target="#content">Статистика</button>
<button hx-get="/api/tasks" hx-target="#content">Задачи</button>
<button hx-get="/api/notes" hx-target="#content">AI_NOTES.md</button>
<button hx-get="/api/llm/console" hx-target="#content">LLM Console</button>
<button hx-get="/api/llm/models" hx-target="#content">LLM Models</button>
<button hx-get="/api/llm/history" hx-target="#content">LLM History</button>
</div>
<div id="model-badge"
hx-get="/api/llm/status"
hx-trigger="load, every 5s">
Текущая модель: <strong></strong>
</div>
</div>
<div id="content">
<p>Выбери раздел вверху.</p>
</div>
</body>
</html>