Compare commits
No commits in common. "90b7500aafd260cbb45168644d7b50a1145cac9d" and "cf0ee4fd7a53079eee6e2b5ac2ce5429d518bbc1" have entirely different histories.
90b7500aaf
...
cf0ee4fd7a
3 changed files with 7 additions and 16 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
> Auftraggeber-Kontext: MIT AG Digitalisierung & KI-Strategien (Vorsitz Dr. S. Flemming),
|
> Auftraggeber-Kontext: MIT AG Digitalisierung & KI-Strategien (Vorsitz Dr. S. Flemming),
|
||||||
> Zielabnehmer der Vorschläge: MIT AG Entbürokratisierung
|
> Zielabnehmer der Vorschläge: MIT AG Entbürokratisierung
|
||||||
> Frontend-Ziel: Integration in cdu-copilot (Flutter, ggf. via Ch∆In Studio), eigenständige Web-Sicht zusätzlich
|
> Frontend-Ziel: Integration in cdu-copilot (Flutter, ggf. via Ch∆In Studio), eigenständige Web-Sicht zusätzlich
|
||||||
> Plattformbasis: **Ch∆In** — Hub/Module/Flow, WASM-Sandbox, tamper-evidentes Audit-Log. Vendor: **F∆I = Flemming.AI**
|
> Plattformbasis: **Ch∆In** (vormals „F∆I-Plattform" / `fai_platform`) — Hub/Module/Flow, WASM-Sandbox, tamper-evidentes Audit-Log; Vendor weiterhin **F∆I = Flemming.AI**
|
||||||
> Status: Entwurf v0.3 — Diskussionsgrundlage AG-intern, noch nicht öffentlich (Plattform-Rename eingearbeitet 2026-06-17)
|
> Status: Entwurf v0.3 — Diskussionsgrundlage AG-intern, noch nicht öffentlich (Plattform-Rename eingearbeitet 2026-06-17)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
@ -890,7 +890,7 @@ liegt dann woanders.
|
||||||
- **ELI**: European Legislation Identifier (eli.dlri.de / EUR-Lex)
|
- **ELI**: European Legislation Identifier (eli.dlri.de / EUR-Lex)
|
||||||
- **CELEX**: EU-Dokumenten-ID-System
|
- **CELEX**: EU-Dokumenten-ID-System
|
||||||
- **REFIT**: EU-Programm zur Regulatorischen Eignungsprüfung
|
- **REFIT**: EU-Programm zur Regulatorischen Eignungsprüfung
|
||||||
- **Ch∆In** (CLI: `chain`): Orchestrierungs-Plattform unter `fai_lawheatmap`. Vendor: **F∆I = Flemming.AI**.
|
- **Ch∆In** (CLI: `chain`, vormals F∆I-Plattform): Orchestrierungs-Plattform unter `fai_lawheatmap`. Vendor: **F∆I = Flemming.AI**.
|
||||||
- **Hub / Module / Flow**: Ch∆In-Server (`chain serve`), WASM-Komponente (ABI `chain:platform`), YAML-Workflow
|
- **Hub / Module / Flow**: Ch∆In-Server (`chain serve`), WASM-Komponente (ABI `chain:platform`), YAML-Workflow
|
||||||
- **RAG**: Retrieval Augmented Generation — LLM mit verpflichteter Quelleneinbindung
|
- **RAG**: Retrieval Augmented Generation — LLM mit verpflichteter Quelleneinbindung
|
||||||
- **Hochrisiko-KI (EU AI Act)**: KI-System, das Rechtsfolgen für Personen
|
- **Hochrisiko-KI (EU AI Act)**: KI-System, das Rechtsfolgen für Personen
|
||||||
|
|
|
||||||
|
|
@ -19,17 +19,8 @@ abstract class EvaluationRepository {
|
||||||
class MockRepository implements EvaluationRepository {
|
class MockRepository implements EvaluationRepository {
|
||||||
const MockRepository();
|
const MockRepository();
|
||||||
|
|
||||||
/// Sorted copy of [Fixtures.evaluations], most-harmful first
|
|
||||||
/// (Studie §6 SKM-€/Jahr as harm proxy). The sort is in
|
|
||||||
/// repository.list() rather than the fixture declaration so
|
|
||||||
/// future Hub-fed lists stay consistent without re-tuning the
|
|
||||||
/// UI.
|
|
||||||
@override
|
@override
|
||||||
Future<List<Evaluation>> list() async {
|
Future<List<Evaluation>> list() async => Fixtures.evaluations;
|
||||||
final sorted = [...Fixtures.evaluations];
|
|
||||||
sorted.sort((a, b) => b.skmEurPerYear.compareTo(a.skmEurPerYear));
|
|
||||||
return sorted;
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<Evaluation?> byEli(String eli) async {
|
Future<Evaluation?> byEli(String eli) async {
|
||||||
|
|
|
||||||
|
|
@ -88,10 +88,10 @@ class AboutPage extends StatelessWidget {
|
||||||
Text('Plattform', style: t.headlineSmall),
|
Text('Plattform', style: t.headlineSmall),
|
||||||
const SizedBox(height: LawHeatmapSpace.sm),
|
const SizedBox(height: LawHeatmapSpace.sm),
|
||||||
Text(
|
Text(
|
||||||
'Ch∆In v0.16.0 — Vendor: F∆I = Flemming.AI. '
|
'Ch∆In v0.16.0 (vormals F∆I-Plattform) — Vendor: '
|
||||||
'Hub. Module. Flow. Deterministisch, WASM-sandboxed, '
|
'F∆I = Flemming.AI. Hub. Module. Flow. Deterministisch, '
|
||||||
'tamper-evident Audit-Log (CHAIN-EVENT-V3), '
|
'WASM-sandboxed, tamper-evident Audit-Log '
|
||||||
'Apache 2.0, CRA-ready.',
|
'(CHAIN-EVENT-V3), Apache 2.0, CRA-ready.',
|
||||||
style: t.bodyLarge?.copyWith(height: 1.6),
|
style: t.bodyLarge?.copyWith(height: 1.6),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue