Files

82 lines
3.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>1С Agent</title>
<link rel="stylesheet" href="/ui/assets/style.css" />
</head>
<body>
<main class="shell">
<aside class="sidebar panel" aria-label="Боковая панель настроек">
<h1>1С Agent</h1>
<p>Раздел настроек</p>
<section class="section">
<h2>Соединение</h2>
<div class="row">
<label>
API URL
<input id="apiBase" type="text" value="" />
</label>
</div>
<button id="checkHealth" class="button button-primary">Проверить /v1/health</button>
<div class="status" id="healthStatus">Инициализация…</div>
</section>
<section class="section">
<h2>Контекст</h2>
<label>
Новое имя проекта
<input id="projectName" type="text" value="" placeholder="Название проекта" />
</label>
<label>
Проект
<select id="projectSelect"></select>
</label>
<div class="row">
<button id="renameProject" class="button">Переименовать</button>
<button id="refreshProjects" class="button">Обновить</button>
<button id="createProject" class="button button-primary">Новый проект</button>
<button id="deleteProject" class="button button-danger" type="button">Удалить проект</button>
</div>
<label>
Новое имя чата
<input id="chatName" type="text" value="" placeholder="Название чата" />
</label>
<label>
Чат
<select id="chatSelect"></select>
</label>
<div class="row">
<button id="renameChat" class="button">Переименовать</button>
<button id="createChat" class="button button-primary">Новый чат</button>
<button id="clearMessages" class="button" type="button">Очистить экран</button>
<button id="clearChatMemory" class="button button-danger" type="button">Очистить чат полностью</button>
</div>
</section>
</aside>
<section class="chat-area">
<section class="panel">
<h2>Чат</h2>
<form id="chatForm" class="composer">
<textarea id="messageInput" rows="2" placeholder="Введите вопрос по 1С"></textarea>
<div class="composer-actions">
<button id="sendButton" class="button button-primary" type="submit">Отправить</button>
</div>
</form>
</section>
<section class="panel chat-panel">
<div id="messages" class="messages" aria-live="polite"></div>
</section>
</section>
</main>
<script src="/ui/assets/app.js"></script>
</body>
</html>