This commit is contained in:
team 1
2026-05-09 11:24:08 +02:00
parent 424aef2575
commit c327dc4102
7 changed files with 428 additions and 29 deletions

View File

@@ -1,8 +1,8 @@
<!DOCTYPE html>
<html lang="en">
<html lang="de">
<head>
<meta charset="UTF-8">
<title>AI Agent</title>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Markdown + Sanitizer -->
@@ -25,29 +25,29 @@
<div class="d-flex">
<img src="/assets/img/logo.png" style="max-height: 20px;">
</div>
<div class="text-info fw-bold" style="font-size: 12px">KI-Agent</div>
<div class="text-info fw-bold" style="font-size: 12px" data-chat-message-text="ui.header_title"></div>
</div>
<img src="/assets/img/logo.svg" style="max-height: 20px;">
<div class="spacer"></div>
<button id="clear" class="btn btn-trans">Diesen Chat löschen</button>
<button id="clear" class="btn btn-trans" data-chat-message-text="ui.buttons.clear"></button>
</div>
<div id="ai-cloud" class="ai-cloud d-none"></div>
<div id="chat" class="chat"></div>
<div id="retriex-chat-options" class="retriex-chat-options p-2" aria-label="Chat-Anzeigeoptionen">
<div id="retriex-chat-options" class="retriex-chat-options p-2" data-chat-message-aria-label="ui.options.aria_label">
<label class="retriex-option-toggle" for="toggle-retriex-cards">
<input id="toggle-retriex-cards" type="checkbox">
<span>Statusinfo anzeigen</span>
<span data-chat-message-text="ui.options.status_info"></span>
</label>
</div>
<div class="input-area">
<textarea id="prompt" class="form-control bg-dark" placeholder="Stelle eine Frage"></textarea>
<button id="send" class="btn btn-trans">Send</button>
<button id="abort" class="btn btn-trans" disabled>Abbrechen</button>
<textarea id="prompt" class="form-control bg-dark" data-chat-message-placeholder="ui.input.prompt_placeholder"></textarea>
<button id="send" class="btn btn-trans" data-chat-message-text="ui.buttons.send"></button>
<button id="abort" class="btn btn-trans" disabled data-chat-message-text="ui.buttons.abort"></button>
</div>
<div class="small mt-2 text-center text-secondary">powered by mitho® | RetrieX kann fehlerhafte Ausgaben machen. RetrieX verwendet alle Daten zum Trainieren seiner Modelle.</div>
<div class="small mt-2 text-center text-secondary" data-chat-message-text="ui.footer_disclaimer"></div>
</div>
</body>