refactor(examples): replace sector-specific example material with generic, fictitious examples

Reference files, test fixtures, the playground demo project and one design
document now use generic, fictitious examples (buildings, energy, water,
grants, municipal services). The playground demo (17 fixtures plus the
embedded demo state) tells one consistent story: a municipal customer
chatbot that pre-screens housing-benefit applications, classified under
Annex III point 5(a). The embedded demo copies were edited in place rather
than regenerated, because they already carry newer AI Act dates than the
fixture files.

Legal text is unchanged. Test semantics are unchanged. Four dark-theme
onboarding screenshots with outdated placeholder text are removed.

Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
This commit is contained in:
Kjell Tore Guttormsen 2026-09-23 14:03:53 +02:00
commit 544934dc57
Signed by: ktg
SSH key fingerprint: SHA256:JakMjO6FTBBzN0Bhfj9saOoEjaFxlSdYuZQQpM/lF9Q
77 changed files with 363 additions and 368 deletions

View file

@ -330,11 +330,11 @@ def create_public_sector_prompt(context: str, style: str = "informativ") -> str:
return f"{base_prompts.get(style, base_prompts['informativ'])}{context}"
# Eksempel: Generer illustrasjon for vegsikkerheit
# Eksempel: Generer illustrasjon for brannførebygging
prompt = create_public_sector_prompt(
"Illustrer konseptet med nullvisjon for trafikksikkerheit. "
"Vis ein trygg veg med fotgjengarfelt, sykkelsti og bil "
"i ein moderne norsk bysamanheng med fjell i bakgrunnen.",
"Illustrer konseptet med brannsikker heim. "
"Vis ei stove med røykvarslar, brannslokkingsapparat og merkt nødutgang "
"i ein moderne norsk bustad med fjell utanfor vindauget.",
style="informativ"
)
```