4ef90b30bc
Testy / Testy warstwy logicznej (silnik) (pull_request) Successful in 10m38s
Testy / Testy warstwy prezentacji (dostęp do baz) (pull_request) Successful in 9m43s
Testy / Build obrazu silnika B (swisseph) (pull_request) Failing after 24s
Testy / Kontrola składni wszystkich warstw (pull_request) Successful in 24s
build / build (push) Successful in 59s
Testy / Testy warstwy logicznej (silnik) (push) Successful in 10m47s
Testy / Testy warstwy prezentacji (dostęp do baz) (push) Successful in 9m53s
Testy / Build obrazu silnika B (swisseph) (push) Failing after 29s
Testy / Kontrola składni wszystkich warstw (push) Successful in 18s
Domyslnie model LOKALNY — prompt niesie oryginalne opisy z baz, wiec domyslnie NIC nie opuszcza sieci. Chmura wlaczana swiadomie (LOG-32). - app/llm/: LLMProvider (jak EphemerisEngine z LOG-24) + dwie implementacje. Lokalny serwer modelu (Ollama/vLLM/llama.cpp) i OpenAI mowia TYM SAMYM protokolem /chat/completions, wiec obsluguje je jedna klasa; Anthropic ma wlasny /v1/messages. Napisane na samym httpx — bez SDK openai/anthropic: mniej zaleznosci i pelna kontrola nad tym, co wychodzi z sieci. - Kazdy dostawca deklaruje `leaves_lan` — interfejs MUSI jawnie mowic, czy tresc baz opuszcza siec; UI na tej podstawie ostrzega. - Ponawianie z backoffem (429/5xx), timeouty, czytelne bledy zamiast stacktrace. - Klucz wylacznie z LLM_API_KEY (sekret), nigdy w repo ani w UI. - POST /chart/horoscope + GET /llm/health. WAZNE: prompt jest zwracany ZAWSZE — takze gdy model padnie lub brakuje klucza. Dzieki temu awaria dostawcy nie blokuje pracy: prompt mozna skopiowac i uzyc recznie. Prezentacja: wybor modelu (lokalny/Anthropic/OpenAI), przycisk „Napisz horoskop (AI)", wynik z informacja kto go napisal, czy dane opuscily siec, ile wskazan weszlo, oraz zastrzezenie ze to nie porada medyczna (PRE-15). Testy: 13 nowych (transport podstawiony — zaden prawdziwy model nie wolany), calosc 131 passed / 1 skipped. Zweryfikowane e2e na atrapie serwera modelu: horoskop napisany, leaves_lan=false, tokeny zliczone; a przy padnietym modelu / braku klucza / zlym dostawcy — czytelny blad i zachowany prompt. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
94 lines
3.9 KiB
HTML
94 lines
3.9 KiB
HTML
{% extends "base.html" %}
|
||
{% block title %}Interpretacje{% endblock %}
|
||
{% block nav_interp %}active{% endblock %}
|
||
|
||
{% block content %}
|
||
<p class="sub">Program policzy horoskop i wyszuka w bazie interpretacje pasujące do obliczeń (pierwsza wersja: planeta w swoim znaku).</p>
|
||
|
||
<form method="post" action="/interpret">
|
||
<div class="grid">
|
||
<label>Data
|
||
<input type="date" name="date" value="{{ form.date or '' }}" required>
|
||
</label>
|
||
<label>Godzina (lokalna)
|
||
<input type="time" name="time" value="{{ form.time or '' }}" required>
|
||
</label>
|
||
<label>Strefa (offset h)
|
||
<input type="number" name="tz_offset" step="0.25" value="{{ form.tz_offset if form.tz_offset is not none else 0 }}">
|
||
</label>
|
||
<label>Szerokość (lat)
|
||
<input type="number" name="lat" step="0.0001" value="{{ form.lat if form.lat is not none else 0 }}">
|
||
</label>
|
||
<label>Długość (lon)
|
||
<input type="number" name="lon" step="0.0001" value="{{ form.lon if form.lon is not none else 0 }}">
|
||
</label>
|
||
</div>
|
||
{% include "_location_picker.html" %}
|
||
<div class="opts">
|
||
<label><input type="checkbox" name="group" value="true" {{ 'checked' if form.group else '' }}> grupuj identyczne opisy</label>
|
||
</div>
|
||
{% if location_label %}<p class="muted small">Wstępnie wpisano lokalizację: <strong>{{ location_label }}</strong> ({{ form.lat }}, {{ form.lon }}). Zmień pola lub kliknij „Tu i teraz".</p>{% endif %}
|
||
{% include "_prompt_block.html" %}
|
||
<div class="actions">
|
||
<button type="button" id="nowBtn" class="ghost">Tu i teraz</button>
|
||
<button type="submit" name="action" value="report">Szukaj interpretacji</button>
|
||
<button type="submit" name="action" value="prompt" class="ghost">Generuj prompt (AI)</button>
|
||
<button type="submit" name="action" value="horoscope">Napisz horoskop (AI)</button>
|
||
<span id="geoNote" class="muted small"></span>
|
||
</div>
|
||
</form>
|
||
|
||
{% if error %}<div class="error">{{ error }}</div>{% endif %}
|
||
|
||
{% if result %}
|
||
{% if result.data_error %}
|
||
<div class="error">{{ result.data_error }}</div>
|
||
{% endif %}
|
||
<div class="meta">
|
||
Silnik: <strong>{{ result.engine }}</strong>
|
||
{% if result.provider %}· baza: {{ result.provider }}{% endif %}
|
||
{% if moment %}· moment: {{ moment }}{% endif %}
|
||
</div>
|
||
|
||
{% for o in result.objects %}
|
||
<div class="sig-item">
|
||
<div class="sig-head">
|
||
<strong>{{ o.object }}</strong> w <strong>{{ o.sign }}</strong>{% if o.house %}, {{ o.house }}. dom{% endif %}
|
||
<span class="{{ 'retro' if o.direction == 'Rx' else '' }}">{{ o.direction }}</span>
|
||
<span class="muted small">(planeta {{ o.planet_token }}: {{ o.planet_total }} rekordów)</span>
|
||
</div>
|
||
{% for f in o.facets %}
|
||
<div class="facet">
|
||
<div class="facet-head">{{ f.label }} — <strong>{{ f.count }}</strong> dopasowań
|
||
<span class="badge" title="siła (LOG-21)">siła {{ f.score }}</span>
|
||
<span class="muted small">[{{ f.token }}]</span></div>
|
||
{% if f.groups %}
|
||
<table class="samples">
|
||
<tbody>
|
||
{% for g in f.groups %}
|
||
<tr>
|
||
<td>{{ g.effect }}{% if g.count > 1 %} <span class="badge">×{{ g.count }}</span>{% endif %}</td>
|
||
<td class="sig small">{{ g.significators | join('; ') }}</td>
|
||
</tr>
|
||
{% endfor %}
|
||
</tbody>
|
||
</table>
|
||
{% elif f.samples %}
|
||
<table class="samples">
|
||
<tbody>
|
||
{% for s in f.samples %}
|
||
<tr><td class="sig nowrap" title="{{ s.significator }}">{{ s.expanded }}</td><td>{{ s.effect }}</td></tr>
|
||
{% endfor %}
|
||
</tbody>
|
||
</table>
|
||
{% endif %}
|
||
</div>
|
||
{% endfor %}
|
||
</div>
|
||
{% endfor %}
|
||
{% endif %}
|
||
|
||
<script src="/static/now.js"></script>
|
||
<script src="/static/copy.js"></script>
|
||
{% endblock %}
|