5f020ef33f
Seven things. **Reasoning starts closed.** The answer is what the reader is waiting for; the thinking is one click away. **Image borders.** .attachments__image was a block-level <a>, so its border stretched the full column around a narrow picture. inline-block, and the frame is the picture. Same fix for the composer thumbnail. **Markdown now renders during the stream.** The generator re-renders the answer so far and sends it as a `render` event at most every 100ms, swapped with innerHTML, instead of appending escaped tokens and formatting everything at the end. Re-rendering whole rather than appending is the point: a list or a code fence is only correct once its context exists, and partial syntax resolves itself as more arrives. Measured against a live model: 29 render events, formatting visible from the first content token. **Stop button.** A stop request goes into an in-process set the generator checks between chunks; whatever arrived is kept, because a half-written answer the reader chose to cut short is still worth having. Measured: stream ended 0.2s after the request, 1155 characters preserved, message marked stopped rather than errored. Navigating away does the same thing via CancelledError. **Rewind and edit.** Edit one of your own turns and everything after it is deleted, then the conversation runs on from there. Deliberately not branching: that needs a UI for choosing between versions, and "go back and try again from here" is what was asked for. The form states how many messages will be discarded before you confirm. **Custom model picker.** A <select> renders only text in an <option>, so it can never show an avatar. Built from buttons and a hidden input, with descriptions, capability tags, a filter box past eight models, and arrow-key navigation written out by hand since there is no native widget doing it. **Notification system.** lembas.notify/confirm/prompt in ui.js, built on <dialog> so focus trapping, Escape and page inertness come from the browser. htmx:confirm is intercepted, so every existing hx-confirm gets the themed dialog with no change at the call site; the browser's grey confirm() is gone from every template. 230 tests, ruff clean. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
99 lines
3.9 KiB
HTML
99 lines
3.9 KiB
HTML
{% from "_macros.html" import icon %}
|
|
{#
|
|
One connection: an editable form plus its current status.
|
|
|
|
Swapped in place by the "Test & refresh" button, so this fragment has to be
|
|
able to render on its own as well as inside the list.
|
|
#}
|
|
<section class="card connection" id="connection-{{ connection.id }}">
|
|
<form method="post" action="/admin/connections/{{ connection.id }}" class="form-grid">
|
|
<div class="card__header">
|
|
<div class="row" style="gap: var(--sp-2); min-width: 0">
|
|
<span class="status-dot {{ 'is-ok' if connection.enabled and not connection.last_error
|
|
else 'is-bad' if connection.last_error else 'is-off' }}"
|
|
aria-hidden="true"></span>
|
|
<strong class="truncate">{{ connection.name }}</strong>
|
|
{% if model_count is defined %}
|
|
<span class="badge">{{ model_count }} model{{ '' if model_count == 1 else 's' }}</span>
|
|
{% endif %}
|
|
{% if not connection.enabled %}
|
|
<span class="badge">disabled</span>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="btn-row">
|
|
<button class="btn btn--sm" type="submit"
|
|
hx-post="/admin/connections/{{ connection.id }}/test"
|
|
hx-target="#connection-{{ connection.id }}" hx-swap="outerHTML"
|
|
formnovalidate>
|
|
{{ icon("refresh", "icon--sm") }} Test & refresh
|
|
</button>
|
|
<button class="btn btn--sm btn--primary" type="submit">Save</button>
|
|
</div>
|
|
</div>
|
|
|
|
{% if message %}
|
|
<div class="alert alert--{{ message_kind|default('success') }}">
|
|
{% if message_kind == "error" %}{{ icon("warning", "alert__icon") }}{% endif %}
|
|
<span>{{ message }}</span>
|
|
</div>
|
|
{% elif connection.last_error %}
|
|
<div class="alert alert--error">
|
|
{{ icon("warning", "alert__icon") }}
|
|
<span>{{ connection.last_error }}</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="field">
|
|
<label class="field__label" for="name-{{ connection.id }}">Name</label>
|
|
<input class="input" id="name-{{ connection.id }}" name="name"
|
|
value="{{ connection.name }}" required>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label class="field__label" for="url-{{ connection.id }}">Base URL</label>
|
|
<input class="input input--mono" id="url-{{ connection.id }}" name="base_url"
|
|
value="{{ connection.base_url }}" required>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label class="field__label" for="key-{{ connection.id }}">API key</label>
|
|
<input class="input input--mono" id="key-{{ connection.id }}" name="api_key"
|
|
type="password" autocomplete="off"
|
|
value="{{ unchanged if connection.api_key_encrypted else '' }}"
|
|
placeholder="No key set">
|
|
<p class="field__hint">
|
|
{% if connection.api_key_encrypted %}
|
|
Currently <code>{{ masked }}</code>. Leave the dots alone to keep it,
|
|
or clear the field to remove the key entirely.
|
|
{% else %}
|
|
No key is stored for this endpoint.
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label class="checkbox">
|
|
<input type="checkbox" name="enabled" value="true"
|
|
{{ 'checked' if connection.enabled }}>
|
|
<span>Enabled — its models are offered in chats</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="card__footer">
|
|
<span class="text-xs faint">
|
|
{% if connection.last_checked_at %}
|
|
Last checked {{ connection.last_checked_at.strftime("%Y-%m-%d %H:%M") }} UTC
|
|
{% else %}
|
|
Never checked
|
|
{% endif %}
|
|
</span>
|
|
<button class="btn btn--sm btn--danger" type="submit"
|
|
formaction="/admin/connections/{{ connection.id }}/delete" formnovalidate
|
|
data-confirm-button="Delete the connection “{{ connection.name }}”? Existing chats keep their history.">
|
|
{{ icon("trash", "icon--sm") }} Delete
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</section>
|