<?xml version="1.0" encoding="utf-8"?><rss version="2.0">
  <channel>
    <title>Liip Blog</title>
    <link>https://www.liip.ch/en/blog</link>
    <lastBuildDate>Tue, 28 Jul 2026 17:00:27 +0200</lastBuildDate>
            <item>
      <title>Your Content Strategy as System Prompt</title>
      <link>https://www.liip.ch/en/blog/your-content-strategy-as-system-prompt</link>
      <guid>https://www.liip.ch/en/blog/your-content-strategy-as-system-prompt</guid>
      <pubDate>Tue, 28 Jul 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<p>The cost of producing content is trending toward zero.</p>
<p>But anyone working in branding and corporate communications knows the dilemma:</p>
<ul>
<li>Faster and more consistent: yes, please!</li>
<li>Losing control over positioning: no, thanks.</li>
</ul>
<p>We revised our own content strategy — with the help of AI. And looked for a way to resolve that dilemma: an efficient process that keeps control in human hands.</p>
<h2>Where to start</h2>
<p>Liip sharpened its positioning goals, which meant our content strategy needed a revision too.</p>
<p>For this, I worked with Claude: we have Enterprise access at Liip, and I use the desktop app.</p>
<p>As a first step, I set up a new project. I give it a clear title and describe what I'm trying to achieve.</p>
<p>I can also feed the system <strong>context information</strong> that it takes into account across all the work within that project.</p>
<p>In this case, relevant context included:</p>
<ul>
<li>The organization's vision and strategy</li>
<li>Positioning goals</li>
<li>Existing personas</li>
<li>Approval processes and relevant governance</li>
</ul>
<p>Anything relevant to the content strategy goes into the project as context. This matters especially when several stakeholders or language regions have a say in the final result: the system proposes — but it knows the guardrails within which a proposal actually holds up.</p>
<p>This context provides a solid foundation for an approach that's both <strong>grounded</strong> and <strong>efficient</strong>.</p>
<p>From there, the actual work on the <a href="https://www.liip.ch/en/blog/why-do-you-need-a-content-strategy" rel="noreferrer" target="_blank">content strategy</a> itself can begin.</p>
<p>I wanted to sharpen our core messages and target groups — two building blocks we'd been developing further as part of our new positioning.</p>
<h2>Working with the system</h2>
<p>For each building block, I had two options:</p>
<ul>
<li>Have Claude generate a first proposal, derived from the context I'd provided.</li>
<li>Sketch out roughly what I had in mind, and let the system turn it into a full version.</li>
</ul>
<p>Either way gives me a starting point I can refine further — alone, with the system, or with the team. The AI doesn't write my strategy; it simply supports me through the process.</p>
<p>What it takes is the moment where I step back from what's been generated, reflect on whether it actually serves our goals, and bring in my own judgment.</p>
<p>To get a fresh perspective on generated proposals, I like to pull in colleagues. Through this process, I developed a first complete version of our core messages, which I then took to the team for feedback.</p>
<p>Depending on where you're starting from, you can work through the different building blocks this way. The system makes sure everything builds on what came before in a meaningful way.</p>
<h2>What's a system prompt?</h2>
<p>Once my revised strategy is in place, I take it one step further: I derive a system prompt from it.</p>
<p>A system prompt is the overarching instruction you give a model once, which then automatically applies to every following interaction in that context — unlike the actual prompt, which you write fresh for each individual request.</p>
<p>In effect, I've built myself an assistant that supports me — or others on the team — in creating new content, while automatically paying into our content strategy:</p>
<ul>
<li>The system asks me who the content is for, and surfaces the pain points and content needs that fit.</li>
<li>The system asks which core message should take the lead, and helps me align the content with it.</li>
<li>The system walks me through every other relevant dimension — step by step.</li>
</ul>
<p>From there, the system prompt can keep being refined as you work with it — for instance, once you realize that the channel you're writing for actually matters.</p>
<h2>More than a tool trick</h2>
<p>This is where, for me, the point that often gets missed becomes visible: <strong>automation only scales what's already structurally sound.</strong></p>
<p>The system prompt is only ever as good as the content strategy it's derived from. The real work wasn't the prompting — it was sharpening the strategy. The strategic decisions — what we stand for, who we want to reach, with which message — were made by the team.</p>
<p>If you're curious, try it on a single building block: bring in the context, pick a topic, let it generate a proposal or sketch, fine-tune it with a colleague.</p>
<p>If you're already working with us and your content strategy could use a reality check, reach out: together, we can gather and review what you already have, then set it up in whichever AI tool your team prefers.</p>
<p>Working in the public sector and wondering how a process like this fits with your approval and compliance requirements? Let's talk — we have experience setting up AI-supported processes within existing governance structures.</p>]]></description>
    </item>
        <item>
      <title>Reimagining Frontend Frameworks</title>
      <link>https://www.liip.ch/en/blog/reimagining-reactive-frontend-frameworks</link>
      <guid>https://www.liip.ch/en/blog/reimagining-reactive-frontend-frameworks</guid>
      <pubDate>Thu, 16 Jul 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<p>Lately React, Vue and Svelte have converged on similar concepts for building reactive interfaces. Their syntax differs, but every reactive frontend still uses some form of state, computed values, mutations and effects.</p>
<p>Nevertheless, there is a lot of knowledge involved in getting something basic working in any of these frameworks. In this blog post I will explore what the most stripped down version of such a framework could look like, while still keeping the ergonomics of a reactive framework.</p>
<p>Let's get right into it.</p>
<h1>Imagining the framework</h1>
<p>To make this concrete, I built a small framework called <a href="https://www.npmjs.com/package/effectlayer">effectlayer</a>. I will explain its building blocks in this blog post.</p>
<h1>Building blocks</h1>
<p>The framework is built around a single JavaScript class, which the framework enhances with reactive behavior. That reactivity is powered by Signals, a common primitive used in frameworks such as Vue, Svelte, and SolidJS.</p>
<h2>State</h2>
<p>All class properties are treated as state. The framework turns them into Signals, so no state annotations are needed here:</p>
<pre><code class="language-javascript">class MoodSwing {
  energy = 5;
  coffee = 0;
}</code></pre>
<h2>Computed Values</h2>
<p>Computed values use standard JavaScript getters. The framework treats them as derived Signals that update automatically when their dependencies change:</p>
<pre><code class="language-javascript">  get mood() {
    if (this.energy &gt; 8) return "🤪";
    if (this.energy &gt; 4) return "😀";
    if (this.energy &gt; 0) return "😑";
    return "😴";
  }</code></pre>
<h2>Mutations</h2>
<p>Methods are a natural fit for mutations:</p>
<pre><code class="language-javascript">  drinkCoffee() {
    this.coffee++;
    this.energy = Math.min(10, this.energy + 3);
  }

  work() {
    this.energy = Math.max(0, this.energy - 2);
  }</code></pre>
<h2>Effects</h2>
<p>The last concept we need is effects. Effects are a fancy way of saying "a thing that executes when dependent Signals change".</p>
<p>I chose methods starting with <code>$</code> for annotating them:</p>
<pre><code class="language-javascript">  $monitor() {
    if (this.coffee &gt; 10) console.warn("You may want to slow down.");
  }</code></pre>
<p>The framework sees that <code>$monitor()</code> uses <code>coffee</code>. After <code>coffee</code> changes, it calls the method again.</p>
<h2>HTML</h2>
<p>Rendering HTML is also an effect that just returns JSX.</p>
<pre><code class="language-javascript">  $ui() {
    return (
      &lt;main&gt;
        &lt;h1&gt;{this.mood}&lt;/h1&gt;
        &lt;button onClick={() =&gt; this.drinkCoffee()}&gt;☕ Coffee&lt;/button&gt;
        &lt;button onClick={() =&gt; this.work()}&gt;💻 Work&lt;/button&gt;
      &lt;/main&gt;
    );
  }</code></pre>
<p>All that is left is to make the class reactive by wrapping it in an <code>effectlayer</code> call:</p>
<pre><code class="language-javascript">const moodSwing = effectlayer(MoodSwing);
moodSwing.$monitor();
document.body.appendChild(moodSwing.$ui());</code></pre>
<p>Calling an effect once activates it. This means <code>$monitor()</code> will now run whenever <code>coffee</code> changes.</p>
<p>The <code>$ui()</code> call returns an HTML element and keeps it up to date.</p>
<h1>All the concepts we need</h1>
<p>So basically the framework only needs four concepts:</p>
<ul>
<li>properties for state</li>
<li>getters for computed values</li>
<li>methods for mutations</li>
<li>methods starting with <code>$</code> for effects</li>
</ul>
<p>If you want to try out this experimental framework use:</p>
<pre><code class="language-sh">npm create effectlayer</code></pre>
<p>Or check it out on <a href="https://www.npmjs.com/package/effectlayer">npm</a>.</p>
<h1>Deep Dive?</h1>
<p>Let me know if you want to see a deep dive into how I built this framework: <a href="mailto:falk.zwimpfer@liip.ch">falk.zwimpfer@liip.ch</a></p>]]></description>
    </item>
        <item>
      <title>AI Won&#039;t Save Bad Content. A Content Strategy Might.</title>
      <link>https://www.liip.ch/en/blog/ai-won-t-save-bad-content-a-content-strategy-might</link>
      <guid>https://www.liip.ch/en/blog/ai-won-t-save-bad-content-a-content-strategy-might</guid>
      <pubDate>Tue, 14 Jul 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<p>If you want generative AI to produce quality results, you need a solid content strategy and clear guidelines.</p>
<p>Let's be honest: the gen-AI hype is a threat to my content business. We're seeing companies hold back investment in their content. Why?</p>
<p>The capabilities of generative AI make it clear that our field is about to change significantly. But this field is broad — it brings together very different skill sets and areas of work.</p>
<p>So the interesting question becomes: how exactly will content work in organizations change?</p>
<h1>A shift in roles</h1>
<p>A study by AG CommTech and GK Personalberatung looks at how roles and skills are shifting in the communications profession. Their <a href="https://agcommtech.de/wp-portfolio/studie-kuenftige-rollen-und-kompetenzen-in-der-kommunikationsprofession-im-wandel-der-digitalisierung/" rel="noreferrer" target="_blank">meta-study</a> shows that what's needed today is a combination of technological efficiency and human authenticity — a growing need for experts who can interpret data, use AI to extract relevant insights from it, and translate those insights into effective communication strategies.</p>
<p><strong>In other words, strategic skills matter more than ever.</strong></p>
<h1>More quantity, less quality?</h1>
<p>Why is that?<br />
Let's look at one visible area: generated text.</p>
<p>A <a href="https://ai-on-the-internet.github.io/" rel="noreferrer" target="_blank">Stanford study</a> from early 2026 shows that around 35% of all newly published websites are now AI-generated or at least AI-assisted.</p>
<p>The volume of generated content is growing fast. But what about quality?</p>
<p>That's not a simple question, since quality has several dimensions.</p>
<p>Let's ask Claude about it. The bot points to a <a href="https://contentmarketinginstitute.com/b2b-research/b2b-content-marketing-trends-research-2025#AI%20use%20trends" rel="noreferrer" target="_blank">survey by the Content Marketing Institute</a>, in which only 17% of B2B marketers rate the quality of AI-generated content as excellent or very good. 44% rate it as good, 35% as "fair," and 4% as poor. At the same time, 67% say they trust AI output only moderately, and 28% say they trust it little.</p>
<p>That's not exactly a robust finding, but it matches my own experience. So let's dig into the question: how does this middling track record come about?</p>
<h1>Input quality equals output quality</h1>
<p>AI can do a lot, but it can't work miracles. <strong>LLMs need a solid foundation to produce good results.</strong></p>
<p>If I want to generate content for my company's channels, a solid foundation means the following:</p>
<ul>
<li><strong>Complete data</strong> — AI can't generate reliable content if it can't find the relevant information in your existing content.</li>
<li><strong>Target group needs and questions</strong> as the central point of reference for the content.</li>
<li><strong>A content playbook</strong> that personalizes the output and aligns it with the organization's communication rules and goals.</li>
</ul>
<p>That's a fairly sobering realization if you were hoping gen-AI would simply take the work off your hands. Depending on where you're starting from, meeting these requirements actually creates new work first.</p>
<p><strong>But it also shows exactly where you can start to raise the quality of your generated content.</strong></p>
<p>These requirements put <strong>user-centricity</strong> and <strong>content strategy &amp; guidelines</strong> squarely at the center — which brings us right back to strategic skills.</p>
<p>In an upcoming post, I'll describe what belongs in a content strategy, in my view, and which elements deserve priority.</p>]]></description>
    </item>
        <item>
      <title>Why Do You Need a Content Strategy?</title>
      <link>https://www.liip.ch/en/blog/why-do-you-need-a-content-strategy</link>
      <guid>https://www.liip.ch/en/blog/why-do-you-need-a-content-strategy</guid>
      <pubDate>Tue, 14 Jul 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<p>Generative AI means a massive disruption for the content business. The entire production process is being shaken up. Profiles, workflows, tools – everything is being redefined.</p>
<p>As the cost of content production trends toward zero, two things gain massively in importance:</p>
<ul>
<li>Quality of content</li>
<li>Visibility and findability of content</li>
</ul>
<h1>Generative Engine Optimization (GEO) for the benefit of users</h1>
<p>Visibility and findability of content is increasingly becoming a question of AI visibility: whether your own content and your own brand show up in the answers and results of AI chatbots and agents.</p>
<p>Here's some reassurance: LLMs prioritize content based on criteria that are also relevant to users.</p>
<p>Beyond the technical dimension – content must be readable and usable for AI systems – content also needs to meet the following dimensions:</p>
<ul>
<li>Built around the user</li>
<li>Trustworthy</li>
<li>Clear thematic positioning</li>
</ul>
<p>This means the two aspects – quality and findability of content – are closely linked.</p>
<p>For a team to reach the point of producing content at this level of quality, we first need to clarify the fundamentals: without a clean alignment, no content team in the world is able to produce content of this quality in the medium term.</p>
<h1>The Triple Content Line</h1>
<p>We define our alignment as a content team across the following elements:</p>
<ul>
<li>Content strategy</li>
<li>Content guidelines</li>
<li>Content governance</li>
</ul>
<p>As a team, this is where we agree on the common denominator for our content work. Only this way can we produce quality content that meets both internal and external requirements.</p>
<p>The line between content strategy and content guidelines isn't always easy to draw.</p>
<h1>What belongs in a content strategy?</h1>
<p>There's no definitive answer to what belongs in a content strategy. And beyond that, I'd describe a content strategy more as an ongoing area of work than as a finished document.</p>
<p>For me, the following elements belong in a content strategy:</p>
<ul>
<li>Content goals: What do I actually want to achieve with my content?</li>
<li>Target audiences and their content needs</li>
<li>Content journeys of the target audiences</li>
<li>Channel strategy: Which channels do we work with, and how do they play together?</li>
<li>Key messages</li>
<li>Success measurement</li>
<li>Interfaces to content governance and content lifecycle management</li>
</ul>
<h1>What belongs in content guidelines?</h1>
<p>Unlike content strategy, content guidelines need to be embedded in day-to-day work. Alongside fixed reference points (e.g. the targeted language level), they often contain principles for us:</p>
<ul>
<li>Language level</li>
<li>Language rules (e.g. consistent formatting of dates, currencies, and similar, but also topics like gender-neutral language or how to address target audiences)</li>
<li>Tone of voice</li>
<li>Page types</li>
<li>Tools</li>
<li>...</li>
</ul>
<h1>What belongs in content governance?</h1>
<p>Content governance defines who on the content team is responsible for what – and how we work together to make sure strategy and guidelines are actually put into practice. Without governance, strategy and guidelines remain well-intentioned documents that get lost in day-to-day business.</p>
<p>For me, the following elements belong in content governance:</p>
<ul>
<li>Roles and responsibilities: Who creates, who reviews, who approves?</li>
<li>Approval processes: How does content move from idea to publication?</li>
<li>Maintenance and update processes: Who is responsible for updates, and when?</li>
<li>Quality assurance: How do we ensure guidelines are being followed?</li>
<li>Escalation paths: What happens in case of disagreement or edge cases?</li>
<li>Interfaces to other teams (e.g. design, product, marketing)</li>
</ul>
<h1>The goal? Interplay</h1>
<p>Content strategy, content guidelines, and content governance work together: strategy sets the direction, guidelines translate it into daily practice, and governance ensures that both actually happen rather than just existing on paper. Only through the interplay of these three elements does content emerge that is consistent, trustworthy, and findable – both for users and for AI systems – while also meeting the positioning goals of your own organization.</p>
<p>Content production is getting cheaper. But without these fundamentals, it stays arbitrary – no matter how powerful the tools become. Whoever invests in strategy, guidelines, and governance now is laying the foundation for content that will still be found, understood, and trusted tomorrow.</p>
<p><em>How Generative Engine Optimization (GEO) works in practice will follow in upcoming posts.</em></p>]]></description>
    </item>
        <item>
      <title>Apertus after 8 months - what we learned and look forward to using Switzerland&#039;s AI Model</title>
      <link>https://www.liip.ch/en/blog/apertus-after-8-months-what-we-learned-and-look-forward-using-switzerlands-ai-model</link>
      <guid>https://www.liip.ch/en/blog/apertus-after-8-months-what-we-learned-and-look-forward-using-switzerlands-ai-model</guid>
      <pubDate>Thu, 09 Jul 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<p>Since September 2025, we have been running <a href="https://www.apertus-ai.org/">Apertus</a> — the Swiss open-source language model developed by <a href="https://www.epfl.ch/">EPFL</a>, <a href="https://ethz.ch/">ETH Zurich</a> and the <a href="https://www.cscs.ch/">Swiss National Supercomputing Centre (CSCS)</a> — on <a href="https://zuericitygpt.ch">ZüriCityGPT</a>, our reference implementation of a City AI assistant. Eight months later, I want to share what we have learned and what we are curious about for the upcoming Apertus 1.5 release.</p>
<!-- IMAGE: Screenshot of zuericitygpt.ch and oss.zuericitygpt.ch side by side -->
<h1>A brief history of LiipGPT and ZüriCityGPT</h1>
<p>2023, Chregu released the <a href="https://www.liip.ch/en/blog/ask-zuricitygpt-anything-about-the-government-of-the-city-of-zurich">first version of LiipGPT</a>. 2024, we were able to <a href="https://www.liip.ch/en/blog/zuricitygpt-oss-version-using-only-open-source-models">use only open-source models on ZüriCityGPT</a>. 2025, we switched the open-source version to the <a href="https://www.liip.ch/en/blog/apertus-4-ways-to-try-out-switzerland-s-new-ai-model">newly released Apertus model</a>. In this blog post, we talk about the insights gained since then.</p>
<h1>Setting up the experiment</h1>
<p><a href="https://liipgpt.ch">LiipGPT</a>, our <a href="https://www.liip.ch/en/work/projects/liipgpt">generative AI framework</a>, has a pluggable model layer. That means we can swap the underlying language model without changing anything else — same Retrieval-Augmented Generation (RAG) pipeline, same knowledge base of official content from stadt-zuerich.ch. This gave us a straightforward way to compare models in a real deployment.</p>
<p>The production system at <a href="https://zuericitygpt.ch">zuericitygpt.ch</a> runs GPT-4o-mini on Azure Europe. Alongside it, we run an open-source variant at <a href="https://oss.zuericitygpt.ch">oss.zuericitygpt.ch</a> where in the past we compared Llama and Mixtral models. We switched the open-source variant to <a href="https://www.swisscom.ch/en/about/news/2025/09/02-apertus.html">Apertus-70B</a> when it was released in September 2025, then moved to <a href="https://www.infomaniak.com/en/hosting/ai-services/open-source-models">Infomaniak-hosted</a> Apertus in April 2026. (To be clear: ZüriCityGPT itself and the LiipGPT platform are not open source — but the underlying language model on the OSS variant is.)</p>
<p>We run Apertus as the 70-billion-parameter model. It was trained from scratch on the Alps supercomputer using Swiss hydroelectricity, with 15 trillion tokens of training data spanning over 1,800 languages. It is fully open-source under an Apache 2.0 licence.</p>
<p>Over the last eight months, we collected over 39,000 conversations on the production side and 3,400 on the open-source side. Quality is measured using three metrics: how often an answer is acceptable (Match Rate), how often it is actually good (Match Rate +1), and how faithfully it reflects the source documents (Faithfulness). These are metrics our LiipGPT team has established as practical product metrics, not scientific benchmarks — the data is calculated real-time and asynchronously by the LiipGPT platform while users ask different questions over time, evolving website content, and model endpoint changes. Parts of the analysis were prepared with the help of Claude. Our aim is not to provide a scientific study but more a practical report. I share these results with the Apertus community because real-world deployment data of this open-source model is rare — and we think it's useful.</p>
<h1>What we observed</h1>
<p>Both models get the job done. On the basic question — does the user get an acceptable answer? — both models perform similarly. GPT-4o-mini scores 81%, Apertus 82% on historically matched questions. In a controlled test with 20 identical questions asked at the same moment, both hit 100%. Both models generally work as expected.</p>
<p>The gap shows up in answer quality. When we raise the bar to "is this answer actually good?", GPT-4o-mini scores 72% and Apertus 55%. That is a noticeable difference, and it matters for users who expect precise, well-structured responses.</p>
<p>Faithfulness is more nuanced than we expected. GPT-4o-mini averages 0.79, Apertus 0.50 on our faithfulness metric. But these numbers need context. We noticed something we started calling the "faithfulness paradox": when a model says "I cannot answer this," you might expect high faithfulness — no hallucination, after all. In practice, these evasive answers score low because the model is failing to use information that is available. A model that engages with its sources and cites them scores higher, even though it is making more verifiable claims. Both behaviours have tradeoffs, and both showed up across the two systems.</p>
<figure><a href="https://www.liip.ch/media/pages/blog/apertus-after-8-months-what-we-learned-and-look-forward-using-switzerlands-ai-model/ac2f708a50-1783608445/chart_comparison_2x3.png"><img alt="" src="https://liip.rokka.io/www_inarticle_5/b851b8/chart-comparison-2x3.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/b851b8/chart-comparison-2x3.jpg 2x"></a><figcaption>Three quality metrics compared across a controlled test (20 identical questions) and historically matched real-user questions</figcaption></figure>
<p>Sometimes Apertus gave the better answer. The most striking example was the waste dump question: "What are the rules for using the Zurich waste dump?" GPT-4o-mini responded cautiously, saying it could not provide specific rules. Apertus gave a detailed, structured answer with recycling centre details, phone numbers, and cited sources — scoring 6/6 on quality where GPT-4o-mini scored 3/6. When the knowledge base contains a clear, structured answer, Apertus can be surprisingly good at extracting and presenting it.</p>
<figure><a href="https://www.liip.ch/media/pages/blog/apertus-after-8-months-what-we-learned-and-look-forward-using-switzerlands-ai-model/9436173ed7-1783609912/apertus_gpt4omini_waste_dump.png"><img alt="" src="https://liip.rokka.io/www_inarticle_5/3b465f/apertus-gpt4omini-waste-dump.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/3b465f/apertus-gpt4omini-waste-dump.jpg 2x"></a><figcaption>GPT-4o-mini and Apertus respond to the same question</figcaption></figure>
<p>That said, this willingness to commit cuts both ways. In cases where the source material is ambiguous, Apertus can feel more helpful while being less strictly grounded — and for public-sector chatbots, traceability matters as much as helpfulness.</p>
<p>GPT-4o-mini is more concise and better at synthesis. Apertus tends to produce longer, more verbose answers. In a public-service chatbot, that is a real UX issue — users want a direct answer with clear next steps, not three paragraphs of context.</p>
<figure><a href="https://www.liip.ch/media/pages/blog/apertus-after-8-months-what-we-learned-and-look-forward-using-switzerlands-ai-model/b6516e51a6-1783610106/apertus_gpt4omini_verbose.png"><img alt="" src="https://liip.rokka.io/www_inarticle_5/677113/apertus-gpt4omini-verbose.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/677113/apertus-gpt4omini-verbose.jpg 2x"></a><figcaption>GPT-4o-mini responds concise, Apertus more verbose</figcaption></figure>
<p>GPT-4o-mini also handles factual freshness better: it returned Zurich's current population (452,421), while Apertus fell back to a 2013 figure. When information has changed or the answer requires connecting multiple sources, GPT-4o-mini felt more reliable.</p>
<figure><a href="https://www.liip.ch/media/pages/blog/apertus-after-8-months-what-we-learned-and-look-forward-using-switzerlands-ai-model/5ed0fada3b-1783610421/apertus_gpt4omini_population.png"><img alt="" src="https://liip.rokka.io/www_inarticle_5/997ce3/apertus-gpt4omini-population.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/997ce3/apertus-gpt4omini-population.jpg 2x"></a><figcaption>GPT-4o-mini answers with more recent population data compared to Apertus</figcaption></figure>
<p>Language switching is a weak spot. When we asked "Est-ce que tu parles français?", GPT-4o-mini responded fluently in French. Apertus declined, saying it could not answer questions about its own linguistic capabilities. In more recent tests we saw that Apertus followed the language instructions in better ways, so we are looking forward to see this further improve.</p>
<figure><a href="https://www.liip.ch/media/pages/blog/apertus-after-8-months-what-we-learned-and-look-forward-using-switzerlands-ai-model/0bbc6670a2-1783610288/apertus_gpt4omini_language.png"><img alt="" src="https://liip.rokka.io/www_inarticle_5/0387e4/apertus-gpt4omini-language.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/0387e4/apertus-gpt4omini-language.jpg 2x"></a><figcaption>GPT-4o-mini follows the language instruction, Apertus did not</figcaption></figure>
<p>The Apertus-70B IFEval score of 44% (vs 58% for comparable models) confirms that instruction following is an area where the model has room to grow.</p>
<figure><a href="https://www.liip.ch/media/pages/blog/apertus-after-8-months-what-we-learned-and-look-forward-using-switzerlands-ai-model/38a7a3a17b-1783609312/chart_monthly_cleaned.png"><img alt="" src="https://liip.rokka.io/www_inarticle_5/c6a834/chart-monthly-cleaned.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/c6a834/chart-monthly-cleaned.jpg 2x"></a><figcaption>Monthly quality trend from October 2025 to June 2026</figcaption></figure>
<p>The trend is positive. In October 2025, Apertus achieved a Match Rate +1 of 59%. By June 2026, it had climbed to 63% — the best month on record. That is not a dramatic leap, but the direction is consistent and it came without a major model update. Meanwhile, GPT-4o-mini has been stable at 63–83% throughout. The gap is narrowing.</p>
<h1>What we are looking forward to</h1>
<p>The Apertus team is preparing version 1.5, with improvements expected in multimodal support, agentic capabilities, tool calling, enhanced reasoning, and better training for regional Swiss languages. We plan to update ZüriCityGPT's open-source instance as soon as it becomes available and continue our quality monitoring.</p>
<p>What encourages us most is that the collaboration is flowing in both directions. After our <a href="https://www.ailights.ch/">aiLights talk</a>, the Apertus team shared our findings with their staff. This close feedback loop between research and practice is exactly what makes the Swiss AI ecosystem worth investing in.</p>
<figure><img alt="" src="https://liip.rokka.io/www_inarticle_5/3719ab/04.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/3719ab/04.jpg 2x"><figcaption>Christian Stocker presenting ZüriCityGPT. Photo: Oleg Lavrovsky (CC BY 4.0), source: <a href="https://log.alets.ch/115/">https://log.alets.ch/115/</a></figcaption></figure>
<p>My practical advice, for anyone considering sovereign AI: start with the use case, then choose the model. If your priority is maximum answer quality today, more popular models are usually the stronger choice. If your priority is data sovereignty, transparency, and independence — and your knowledge base is well-curated — Apertus already delivers. The question is not "sovereign AI or quality" but "how much quality gap are you willing to accept for full sovereignty?" And that gap is closing.</p>
<p>Check the <a href="https://docs.google.com/presentation/d/1Q792ccRiiiRk6zIlmCu7GkkjjZ6kiZJfbRk_CSBhxJ8/edit?usp=sharing">Slides</a> and <a href="https://www.youtube.com/watch?v=Fk0g--aWi1M">Recording</a> for further details.</p>
<h1>Acknowledgements</h1>
<p>I would like to thank the ETH Zurich, EPFL, and the wider <a href="https://www.swisscom.ch/en/about/news/2025/09/02-apertus.html">Swiss AI Initiative</a> community for making Apertus available as a public good. As Martin Jaggi from EPFL put it: "We aim to provide a blueprint for how a trustworthy, sovereign, and inclusive AI model can be developed." (<a href="https://ethz.ch/en/news-and-events/eth-news/news/2025/09/press-release-apertus-a-fully-open-transparent-multilingual-language-model.html">source</a>) Eight months in, we can see that blueprint taking shape and are looking forward to test the 1.5 model in practice as well.</p>
<ul>
<li>
<p>Thank you <a href="https://www.liip.ch/de/team/chregu">Christian Stocker</a> and the <a href="https://liipgpt.ch">LiipGPT</a> team for your dedication to build a practical, experiment-driven and scalable solution for AI chat and search.</p>
</li>
<li>
<p>Thank you <a href="https://www.linkedin.com/in/sabine-wildemann/">Sabine Wildemann</a> and the <a href="https://www.ailights.ch/">aiLights</a> team for hosting our talk.</p>
</li>
<li>
<p>Thank you <a href="https://log.alets.ch/">Oleg Lavrovsky</a> and the Apertus community for your feedback and support.</p>
</li>
<li>
<p>Thank you <a href="https://publicai.ch/">Public AI</a> and our partner <a href="https://www.infomaniak.com/en/hosting/ai-services/open-source-models">Infomaniak</a> for providing the infrastructure.</p>
</li>
</ul>
<h1>Build with Apertus: join Hack Apertus</h1>
<p>Want to get hands-on with sovereign Swiss AI? <a href="https://hackapertus.ch/">Hack Apertus</a> is a two-stage open-source hackathon series where teams build on Apertus to develop blueprints for sovereign infrastructure across the public and private sector. Liip is a partner — we are excited to see what the community builds.</p>
<p>Sign up at <a href="https://hackapertus.ch/">hackapertus.ch</a>.</p>
<figure><a href="https://hackapertus.ch"><img alt="" src="https://liip.rokka.io/www_inarticle_5/afc775/hackapertus-partner-liip.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/afc775/hackapertus-partner-liip.jpg 2x"></a><figcaption>Hackapertus Liip Promo Image</figcaption></figure>]]></description>
    </item>
        <item>
      <title>A Sovereign AI Chatbot for the Canton of Fribourg</title>
      <link>https://www.liip.ch/en/blog/a-sovereign-ai-chatbot-for-the-canton-of-fribourg</link>
      <guid>https://www.liip.ch/en/blog/a-sovereign-ai-chatbot-for-the-canton-of-fribourg</guid>
      <pubDate>Mon, 15 Jun 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<h2>Making Public Information More Accessible</h2>
<p>The fr.ch portal brings together a vast amount of administrative information: procedures, legislation, forms, cantonal services, and municipal information. Finding the right answer within such a large website is not always straightforward.</p>
<p>Users simply ask their question in natural language, just as they would ask another person. Although <a href="https://www.fr.ch/de">fr.ch</a> is available in French and German, as befits a bilingual canton, questions can be asked in any language, allowing people who do not speak either official language to access the information they need.</p>
<p>The AI chatbot identifies relevant content on fr.ch and within Fribourg’s legal database, then generates a written response while citing the official sources used.</p>
<p>This transparency is essential. AI does not replace official information; it makes it easier to access.</p>
<h2>AI Designed for Digital Sovereignty</h2>
<p>Data sovereignty was a central requirement of the project. The State Chancellery wanted to retain full control over both the infrastructure and data processing.</p>
<figure><img alt="" src="https://liip.rokka.io/www_inarticle_5/860740/chatbot-digital-sov-en.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/860740/chatbot-digital-sov-en.jpg 2x"></figure>
<p>The chatbot is powered by <a href="https://www.liip.ch/en/work/projects/liipgpt">LiipGPT</a>, our generative AI platform. Our Retrieval-Augmented Generation (RAG) engine selects the official content most relevant to each question. The solution is hosted in Switzerland by Exoscale.</p>
<p>For the Large Language Model (LLM), we use Mistral AI, a leading European provider. The model is also hosted in Switzerland by <a href="https://www.infomaniak.com/en/hosting/our-cloud-computing-offers">Infomaniak</a>, a pioneer in sustainable and environmentally responsible web hosting. The LLM servers run exclusively on renewable energy and combine natural cooling, heat recovery, optimised and recycled hardware, and local carbon offsetting.</p>
<p>This architecture reduces dependence on major US-based platforms and promotes a Swiss and European approach to generative AI. Requests are anonymised, and no personal data is shared with third parties. The entire solution remains under Swiss jurisdiction and complies with applicable data protection legislation.</p>
<h2>A Collaboration Rooted in Western Switzerland</h2>
<p>The State Chancellery of Fribourg led the project with a clear understanding of the administrative and political challenges involved. Our team, including colleagues based in Fribourg, developed the solution in close collaboration with the Chancellery, ensuring it addressed real-world needs as effectively as possible.</p>
<p>This close partnership enabled fast feedback loops and a strong focus on user experience. Beyond the technology itself, the goal was to create a tool that is useful, reliable, and easy for the people of Fribourg to understand and use.</p>
<h2>A First Step Towards a More Accessible Administration</h2>
<p>Since the initial launch in March, we have refined several aspects of the solution to further improve response quality. To support this process, our client benefits from our automated evaluation tools, which continuously monitor and assess the quality of generated responses.</p>
<p>This first version covers public information available on fr.ch as well as Fribourg’s legal database. However, the scope is not limited to the cantonal portal alone: it is gradually being extended to include information published by other cantonal institutions and selected municipalities. As new sources are added, maintaining response quality remains a key priority. The Canton of Fribourg also maintains <a href="https://www.fr.ch/le-chatbot-ia-de-frch">a dedicated page for the chatbot</a>, which sets out, amongst other things, the data sources used.</p>
<p>One conviction guides our work: AI in the public sector can be sovereign, transparent, and useful. Achieving this requires maintaining control over the infrastructure and always providing clear source references.</p>
<p>Interested in discussing AI for your institution? Don't hesitate to <a href="https://www.liip.ch/en/team/thomas-denervaud">contact me</a></p>]]></description>
    </item>
        <item>
      <title>so.ch: Cantonal services made simple for everyone</title>
      <link>https://www.liip.ch/en/blog/so-ch-cantonal-services-made-simple-for-everyone</link>
      <guid>https://www.liip.ch/en/blog/so-ch-cantonal-services-made-simple-for-everyone</guid>
      <pubDate>Thu, 07 May 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<p>The so.ch website follows a clear objective: users should be able to get things done quickly, directly, and without unnecessary detours. Instead of reflecting the traditional administrative logic of “Which office is responsible?”, so.ch <a href="https://www.liip.ch/en/services/strategy/understand-users">focuses on the user&rsquo;s actual need</a>: “What do I want to get done?”</p>
<p>The clear separation between Services and Administration makes the platform’s purpose immediately obvious and highlights its value for residents and businesses alike. This makes the website’s intent instantly recognisable, with all content structured in a logical and consistent way. It’s not just us saying this, but also the BOSW jury recognised this approach, awarding the site bronze in the category User Experience this year (humble bragging: We took two of the three podium places, winning silver in the same category for the relaunch of the <a href="https://www.liip.ch/en/work/projects/museum-fur-gestaltung-zurich">Museum f&uuml;r Gestaltung Z&uuml;rich</a> website).</p>
<figure class="video"><video controls><source src="https://www.liip.ch/media/pages/blog/so-ch-cantonal-services-made-simple-for-everyone/a93f1aef25-1778057223/liip_bosw_kantonsolothurn.mp4" type="video/mp4"></video></figure>
<h2>Information architecture – designed from a user perspective</h2>
<p>The information architecture is carefully designed and tailored to the needs of its target audiences. All services are centrally organised, clearly categorised, and follow a consistent structure: What do I need? How does the process work? Which channels are available?</p>
<p>This standardisation enables users to quickly grasp relevant information and confidently navigate complex processes. At the same time, information is presented transparently, ensuring that even occasional users immediately understand what steps are required.</p>
<h2>Functionality, interactivity, and usability for added efficiency</h2>
<p>The website’s features are built around user needs. Each service page provides clear, easy-to-understand guidance and intuitive elements that are simple to use. Users are supported at every step—whether through digital services or traditional channels such as forms, phone calls, or in-person visits.</p>
<p>This reduces uncertainty, avoids unnecessary follow-ups, and makes interacting with cantonal services more efficient.</p>
<h2>An inclusive website made for everyone</h2>
<p>so.ch meets <a href="https://www.liip.ch/en/services/development/custom-development/accessibility">digital accessibility</a> standards in line with WAI guidelines, ensuring equal access for all users. Content is written in clear language, navigation is consistent, and interactions are intuitive. The platform supports both digital and non-digital access.</p>
<p>This ensures that people—regardless of technical experience, age, or ability—can use the website efficiently and independently. By consistently focusing on user needs, so.ch delivers an intuitive, transparent, and inclusive platform that makes complex administrative processes easy to understand. Clear objectives, thoughtful information architecture, accessible features, and barrier-free design come together to create a user-centred experience that simplifies and streamlines interactions with cantonal services. </p>
<p>Looking to improve your public service website? I’d be <a href="https://www.liip.ch/en/team/philipp-klein">happy to hear about your needs and challenges</a>.</p>]]></description>
    </item>
        <item>
      <title>Who still needs an apprenticeship when AI exists?</title>
      <link>https://www.liip.ch/en/blog/who-still-needs-an-apprenticeship-when-ai-exists</link>
      <guid>https://www.liip.ch/en/blog/who-still-needs-an-apprenticeship-when-ai-exists</guid>
      <pubDate>Tue, 21 Apr 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<h3>AI is already part of my everyday life</h3>
<p>At the end of 2022, I first saw ChatGPT in a video on TikTok and tried it immediately. It was able to explain Contents to me faster than my teachers, solve tasks better than if I did them myself, and even develop ideas I would never have come up with. That really fascinated me.</p>
<p>But it wasn't until I started my apprenticeship that I realized just how powerful and important AI really is. Today, I use it daily. Not to do my work for me, but to teach myself new things, research more effectively, and work more efficiently on certain tasks.</p>
<h3>My apprenticeship is diverse. That's exactly what makes it exciting</h3>
<p>I'm completing an apprenticeship as a <a href="https://www.ict-berufsbildung.ch/grundbildung/ict-lehren/entwickler-in-digitales-business-efz">Digital Business Developer EFZ</a>. I'm currently in my second year. After the first year at Bbc Basislehrjahr, I've been working at Liip since summer 2025.</p>
<p>What I find particularly exciting about this apprenticeship is that I have many different tasks. I work in various Circles, self-organized teams based on holacracy. This way, I get to know many different perspectives, tasks, and people.</p>
<p>I started in the Finance Circle, which focused more on data management. Since then, I've had the opportunity to look into various other teams and get to know different tasks, perspectives, and ways of working. Today, I work in the Content and Design Circle with a focus on process optimization, automation, and AI. I'll also get to know several other Circles, tasks, and roles throughout my apprenticeship.</p>
<figure><img alt="" src="https://liip.rokka.io/www_inarticle_5/ccafe5/grafik-1.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/ccafe5/grafik-1.jpg 2x"></figure>
<p>This variety suits me well. I like working in a structured way, communicate actively, and find it exciting to analyze and improve workflows. At Liip, I have the privileged opportunity to take on responsibility early in my apprenticeship. I work on impactful internal and external projects, make decisions, and contribute my own ideas. For me, this strongly distinguishes Liip from many other employers offering apprenticeships.</p>
<h3>Dealing with clients is part of it</h3>
<p>One part of my apprenticeship that might be less visible from the outside is dealing with clients. I learn to communicate professionally, represent my own company well, and understand important factors for good collaboration. This means, for example, clearly communicating information within the team, gathering requirements, and communicating in a structured way in projects. Because I participate in real projects early on as an apprentice, I develop a good sense of what really matters to clients.</p>
<h3>How I use AI specifically</h3>
<p>AI becomes particularly helpful when I provide a lot of context. Then, a general tool becomes a valuable sparring partner. AI supports me especially when I have a clear goal and need a good first draft quickly. I use it for brainstorming, to understand new terms, for research, or to structure texts.</p>
<ul>
<li><em>Fun fact on the side: This blog post was also partially structured with AI. I gathered my thoughts, explained the context, and then got help creating a meaningful structure. This is how I use AI in everyday life.</em></li>
</ul>
<p>A good example is the manual for the <a href="https://www.liip.ch/en/work/projects/liipgpt">LiipGPT</a> backend that I wrote. At the beginning, I had practically no experience writing manuals. So I first taught myself the basics with the help of AI. Then I gave the AI as much context as possible and developed a draft step by step with it. In the end, a handbook was created that is often used internally and individually expanded for clients. For me, this was a moment when I realized how much added value AI can bring, because I could not only work faster and without experience, but also create a result that really helps others in their everyday work.</p>
<figure><img alt="" src="https://liip.rokka.io/www_inarticle_5/0714c5/grafik-2-en.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/0714c5/grafik-2-en.jpg 2x"></figure>
<aside>
<blockquote>
<h3>My Top 3 AI Tools for everyday Digital Business</h3>
</blockquote>
<p>A brief look at the tools that help me most in everyday life:</p>
<ul>
<li>
<p><strong>Claude</strong></p>
<p>My most important tool for brainstorming, writing, and understanding new topics.</p>
</li>
<li>
<p><strong>Cursor</strong></p>
<p>Helps me with coding, even without advanced programming skills. For a rendering tool in Figma, I first explained the context in Plan Mode and then implemented it step by step. Cursor helped me really bring the idea to life.</p>
</li>
<li>
<p><strong>NotebookLM</strong></p>
<p>I upload documents or notes and get summaries, questions, or compact learning material from them. Particularly useful for exams or when familiarizing myself with new topics.</p>
<blockquote>
</aside>
</blockquote>
</li>
</ul>
<p>I don't use these tools thoughtlessly. I test them, compare them, and carefully consider which use cases they really make sense for.</p>
<h3>AI is my best learning buddy</h3>
<p>AI has great potential for learning. It simplifies content, provides examples, and adapts to my level. No textbook can do that. Getting started with a topic becomes faster this way. As an apprentice, I ask the AI questions and follow-up questions that I wouldn't dare to ask in class.</p>
<p>At the same time, however: <strong>AI must never replace your own thinking. Those who don't understand how AI works and how it can be used will end up learning very little.</strong></p>
<p>For me, openness and critical questioning are part of dealing with new tools. AI can empower learners, but only if it's consciously used as a tool. That's why it's important for apprentices to engage with AI during their apprenticeship. Not later, when everyone else has long been a routine user.</p>
<h3>How do you use AI?</h3>
<p>Perhaps it's worth pausing briefly after this Blogpost and thinking about your own use of AI. How do you really use AI in your everyday life today? What concrete added value does it bring you? Is it just a tool you try out occasionally? Or do you use it consciously to work better, faster, or more structured?</p>
<p>At Liip, I directly experience how an organization doesn't just use AI, but actively shapes it:</p>
<ul>
<li>Regular knowledge exchanges and Liip Talks about AI, from new models to ethical questions.</li>
<li>AI training for all employees. Internally, we offer workshops and special modules so everyone stays confident in using AI.</li>
<li>Development and further development of our own AI tools like <a href="https://www.liip.ch/en/work/projects/liipgpt">LiipGPT</a>, which is already in use with clients from healthcare, legal, and public sectors.</li>
<li><a href="https://www.liip.ch/en/blog/shaping-ai-for-the-people-and-the-planet">AI Sustainability Guidelines</a>, an internal framework that ensures AI projects are implemented ethically and sustainably.</li>
</ul>
<p>This shows me what an organization can look like that doesn't blindly deploy AI, but takes responsibility for it.</p>
<p>How do employees in your company use AI? Are there clear rules or offerings to use AI meaningfully? Where could AI specifically support you in your role if you used it more deliberately?</p>
<p>AI is not a fixed concept that works the same for everyone. But those who use it early quickly realize: <strong>The question is not whether you still need an apprenticeship, but how much more you get out of it when you have AI.</strong></p>]]></description>
    </item>
        <item>
      <title>BOSW 26: the recap</title>
      <link>https://www.liip.ch/en/blog/bosw-26-the-recap</link>
      <guid>https://www.liip.ch/en/blog/bosw-26-the-recap</guid>
      <pubDate>Mon, 20 Apr 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<p>Once again this year, The Hall in Dübendorf brought together a who’s who of the Swiss web industry to honour the best projects of the past year across various categories. As usual, we submitted projects – three this year – all of which made it onto the shortlist. These were the digital platforms we developed for the Museum für Gestaltung Zürich, the Migros Karrierportal and the new website for the Canton of Solothurn. The awards ceremony provided an opportunity for members of the project team from both the client side and Liip to get together. But above all, it was a chance to experience the suspense of finding out which projects would receive gold, silver or bronze awards.</p>
<h2>Museum für Gestaltung: a masterpiece in Public Value and User Experience</h2>
<p>The new website of the Museum für Gestaltung Zürich serves as the central hub for the museum's digital communication and offers visitors the opportunity to connect with the museum. In co-creation, we crafted a solution that allows the design to speak for itself and delivers real public value. The BOSW jury agreed, awarding the new site the Silver prize in both the User Experience and Public Value categories. </p>
<p>More on the <a href="https://www.liip.ch/en/work/projects/museum-fur-gestaltung-zurich">winning project</a> </p>
<p>As Clelia Kanai, head of Marketing &amp; Communication, points out “For us, design means clarity and responsibility – even in the digital realm. In Liip, we had a partner who shared and upheld this ethos, from the initial concept right through to the final accessibility check. The fact that this resulted in a project which the BOSW jury has awarded silver in the User Experience and Public Value categories is both a validation and a wonderful recognition for us.”</p>
<figure><img alt="" src="https://liip.rokka.io/www_inarticle_5/e48782/bosw2026teampic.jpg" srcset="https://liip.rokka.io/www_inarticle_5/o-dpr-2/e48782/bosw2026teampic.jpg 2x"></figure>
<h2>so.ch: transparency, accessibility and user-friendliness to strengthen the trust of the public</h2>
<p>We developed a new website for the canton of Solothurn, so.ch. It creates genuine public value by making cantonal services transparent, accessible and easy to understand, thereby strengthening the trust of the public, local authorities and the business community in public services. As bs.ch showed us last year, a user-centred website is crucial for improving the lives of citizens who increasingly need to find their public info and documents online. The jury recognised the quality of its user experience by awarding us Bronze in this key category. </p>
<p>More on the <a href="https://www.liip.ch/en/blog/so-ch-cantonal-services-made-simple-for-everyone">winning project</a></p>
<p>Even though we haven’t won as many awards as we’d have liked (and we, of course, think we deserve), it was interesting to feel the pulse of the web industry. We sincerely congratulate "Swissgrid 24/7" on being named the Master of Swiss Web 26. See you next year!</p>]]></description>
    </item>
        <item>
      <title>Zurich Climate Week</title>
      <link>https://www.liip.ch/en/blog/zurich-climate-week</link>
      <guid>https://www.liip.ch/en/blog/zurich-climate-week</guid>
      <pubDate>Thu, 16 Apr 2026 00:00:00 +0200</pubDate>
      <description><![CDATA[<p>The first <a href="https://www.climateweekzurich.org/" rel="noreferrer" target="_blank">Zurich Climate Week</a> (May 4–9) has arrived—and somehow, it comes at just the right moment. Given the current geopolitical landscape, the initiative could easily have fallen flat. The opposite is true: the response and participation have been remarkable. In fact, other cities are already looking on with a bit of envy—and simply coming to Zurich to be part of it.</p>
<p>In light of recent political developments, a “do-talk gap” has been pointed out in sustainability efforts. Zurich Climate Week proves differently: taking action on the climate crisis <strong>and</strong> talking about it.</p>
<p>And that’s exactly what we need right now. Because sustainable transformation doesn’t happen in silence. It happens where different perspectives and commitments come together: business, policy, academia, and civil society. Where knowledge is shared. Where solutions are developed and scaled together.</p>
<h1>Why we’re getting involved</h1>
<p>At Liip, we decided to contribute to the Zurich Climate Week programme for several reasons:</p>
<ul>
<li>To support the initiative by actively contributing to the programme</li>
<li>To strengthen our commitment to sustainability beyond the Climate Week</li>
<li>And not least: to share our experiences, learn from others, and grow our network of like-minded people</li>
</ul>
<p>Our contribution to Climate Week—just like the 2 focus areas we’ve chosen for our events—is guided by one principle: <strong>taking responsibility</strong>.</p>
<h1>Our contribution</h1>
<p>Liip is part of the programme with 2 formats—both focused on exchange, practical insights, and real-world applicability.</p>
<h2>Hacking for Sustainable AI</h2>
<p><a href="https://climateweekzurich.glueup.com/event/hacking-for-sustainable-ai-176395/" rel="noreferrer" target="_blank">More info &amp; registration</a></p>
<p>Artificial intelligence has long become part of our everyday lives. It seems to offer solutions to many problems—and is often the first place we turn when we reach a dead end. At the same time, its environmental and societal impacts remain largely unresolved.</p>
<p>When does using AI actually create real value? And how can we use it in ways that contribute to a more sustainable future?</p>
<p>Together with <a href="https://opendata.ch" rel="noreferrer" target="_blank">opendata.ch</a>, we’re bringing these questions to the table in a mini hackathon. Developers, designers, sustainability experts, companies, and other interested participants are invited to collaboratively develop new ideas, prototypes, and perspectives.</p>
<p>👉 Goal: to develop concrete approaches for using AI in a meaningful, responsible, and impactful way.</p>
<h2>Sustainability Reporting for SMEs: Real Cases, Practical Steps</h2>
<p><a href="https://climateweekzurich.glueup.com/event/sustainability-reporting-for-smes-real-cases-practical-steps-176404/" rel="noreferrer" target="_blank">More info &amp; registration</a></p>
<p>SMEs play a key role in the sustainable transformation. And yet many find themselves at the same starting point: where do we begin? What really matters? And how much effort does it take?</p>
<p>In this session, four SMEs share their experiences with voluntary sustainability reporting.</p>
<p>The format is interactive: as a roundtable, participants can ask questions, share their own approaches, and discuss together how to overcome common challenges.</p>
<p>👉 Goal: to lower the barrier to entry, show that getting started is feasible, and grow a community of committed SMEs.</p>
<h1>From talking to doing—together</h1>
<p>Zurich Climate Week stands for a mindset we strongly believe in: combining urgency with optimism. Not just talking about problems, but driving concrete solutions forward. Taking responsibility together—and creating impact in the process.</p>
<p>Especially in a context where uncertainty is increasing and priorities are shifting, it is more important than ever to stay the course. Sustainability is not a short-term trend—it is a long-term commitment. And at the same time, an opportunity: for innovation, for new business models, for real differentiation—and for a different quality of life.</p>
<p>What we need are more spaces for exchange. More transparency. And more courage to share work that is still in progress.</p>
<p>Zurich Climate Week creates exactly these spaces. We’re excited to be part of it.</p>]]></description>
    </item>
      </channel>
</rss>