{"id":84386,"date":"2026-03-12T10:57:54","date_gmt":"2026-03-12T17:57:54","guid":{"rendered":"https:\/\/blog.mozilla.org\/?p=84386"},"modified":"2026-03-12T11:18:07","modified_gmt":"2026-03-12T18:18:07","slug":"ai-powering-firefox-shake-to-summarize","status":"publish","type":"post","link":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/","title":{"rendered":"Under the hood: The AI powering Firefox\u2019s Shake to Summarize"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"610\" src=\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries-1024x610.png\" alt=\"Three smartphone screens showing Firefox article summarized with Apple Intelligence on translation updates for Chinese, Japanese, and Korean users.\" class=\"wp-image-81609\" srcset=\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries-1024x610.png 1024w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries-300x179.png 300w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries-768x457.png 768w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries-1536x915.png 1536w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries-1000x596.png 1000w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries.png 1600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>We recently released a feature in the Firefox iOS mobile app called \u201c<a href=\"https:\/\/blog.mozilla.org\/en\/firefox\/shake-to-summarize\/\">Shake to Summarize<\/a>\u201d. The reception was remarkably positive, earning an honorable mention on <a href=\"https:\/\/time.com\/collections\/best-inventions-special-mentions\/7320805\/firefox-shake-to-summarize\/\">Time Magazine\u2019s best inventions of 2025<\/a>.&nbsp;<\/p>\n\n\n\n<p>For anyone unfamiliar with Shake to Summarize, it\u2019s just what the name implies: when you\u2019re browsing a webpage, you can shake your phone to generate a short summary of the page\u2019s content.&nbsp;<\/p>\n\n\n\n<p>The gesture is fun, the feature is useful, and the whole thing feels simple and natural.<\/p>\n\n\n\n<p>From a technical standpoint, the application works just how you\u2019d imagine: when a shake (or lightning bolt-icon press) is detected, we grab the web page content, pass it to an LLM for summarization, and then return the result to the user.&nbsp;<\/p>\n\n\n\n<p>But with the LLM landscape being as vast as it is, there is a lot to consider when bringing even a relatively straightforward application to the market. In this post, we\u2019ll discuss the ins and outs of our approach to model selection. We will leave prompt development and quality testing for a future article.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Which model?&nbsp;<\/h2>\n\n\n\n<p>These days, there are many LLMs available, with a steady stream of new releases arriving almost every week.. Each release is paired with a slate of benchmark scores, showing the new model\u2019s superiority along one dimension or another. The pace of development has been fast and furious and billions of dollars have been spent inching the numbers higher and higher.<br><br>But what do these metrics mean in practice? At the end of the day, we are building a product for users. The most important metric for us is, \u201chow useful are the summaries the model produces?\u201d &#8211; something that isn\u2019t neatly captured by the benchmark scores. To select the best model for our applications, we need to run our own tests.<\/p>\n\n\n\n<p>For us, the best model had to excel along several dimensions:&nbsp;<\/p>\n\n\n\n<ul>\n<li>First, summary quality. That\u2019s the whole point, after all.<\/li>\n<\/ul>\n\n\n\n<ul>\n<li>Second, speed. The model needs to return summaries relatively quickly. If it takes the same amount of time to produce the summary as it does to read the article &#8211; we\u2019ve lost.&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul>\n<li>Third, cost. Since we do not charge for use of the Shake to Summarize feature, inference costs are entirely on us (you\u2019re welcome).&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul>\n<li>Finally, open source. Supporting open source projects is a core value here at Mozilla. As such, we prefer to use open source models in our applications, when possible (in this case, we had to settle for open weights).&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Keeping the above in mind, we selected the following models for our initial evaluation: Mistral Nemo, Mistral Small, Jamba 1.5 mini, Gemini flash 2.0 flash and Llama 4 Maverick \u2013 all of which were hosted on Vertex AI. Note: this project began in early 2025<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Quality<\/h3>\n\n\n\n<p>Standard summary evaluation metrics such as BLEU and ROUGE rely on token overlap and do not correlate well with human judgement. Thus, we decided to use an LLM judge (GPT-4o) to evaluate our model candidates. We had each model generate summaries of the same set of webpages, and then asked the LLM judge to evaluate each summary on the following metrics:<\/p>\n\n\n\n<p><strong>Coherence<\/strong>: Does the summary read logically and clearly as a standalone text?<\/p>\n\n\n\n<p><strong>Consistency<\/strong>: Is the information in the summary accurate and faithful to the source? Are there any hallucinations?<\/p>\n\n\n\n<p><strong>Relevance<\/strong>: Does the summary focus on the most important content from the document?<\/p>\n\n\n\n<p><strong>Fluency<\/strong>: Is the summary grammatically correct, fluent, and well-written?<\/p>\n\n\n\n<p>To get a single, comparable metric, we then averaged these scores.<\/p>\n\n\n\n<p>From this analysis, we see that Google\u2019s Gemini 2.0 Flash, Meta\u2019s Llama 4 Maverick, and Mistral small are top performers &#8211; with Gemini consistently leading the pack. We see that the top three models are roughly equivalent on short passages up to around 2000 tokens (which is roughly the length of the average webpage), but performance separates more as passages get longer \u2013 particularly those containing over 5000 tokens*.&nbsp;<\/p>\n\n\n\n<p>*We note that, due in part to this performance degradation, we summarize only pages that are shorter than this 5000 token threshold.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"575\" src=\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/overall-performance2-2-1024x575.png\" alt=\"\" class=\"wp-image-84723\" srcset=\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/overall-performance2-2-1024x575.png 1024w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/overall-performance2-2-300x168.png 300w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/overall-performance2-2-768x431.png 768w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/overall-performance2-2-1536x862.png 1536w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/overall-performance2-2-1000x561.png 1000w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/overall-performance2-2-1277x718.png 1277w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/overall-performance2-2.png 1600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Speed<\/h3>\n\n\n\n<p>For speed, the two metrics we looked at were time to first token (i.e. how long do you have to wait before the model starts generating its response) and tokens-per-second (total tokens generated \/ total generation time, including encoding time).&nbsp;<\/p>\n\n\n\n<p>In both of these tests, Mistral-Small and Gemini-2.0-flash are the clear winners. Both models are faster to begin generating output and produce tokens at a much faster clip than the other models we tested.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"575\" src=\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/latency-2-1024x575.png\" alt=\"\" class=\"wp-image-84734\" srcset=\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/latency-2-1024x575.png 1024w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/latency-2-300x168.png 300w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/latency-2-768x431.png 768w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/latency-2-1536x862.png 1536w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/latency-2-1000x561.png 1000w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/latency-2-1277x718.png 1277w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/latency-2.png 1600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"575\" src=\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/tks_context-2-1024x575.png\" alt=\"\" class=\"wp-image-84745\" srcset=\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/tks_context-2-1024x575.png 1024w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/tks_context-2-300x168.png 300w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/tks_context-2-768x431.png 768w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/tks_context-2-1536x862.png 1536w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/tks_context-2-1000x561.png 1000w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/tks_context-2-1277x718.png 1277w, https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2026\/03\/tks_context-2.png 1600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Cost<\/h3>\n\n\n\n<p>On Vertex AI serverless instances, as of November 2025, the cost for input tokens for our top 3 models are as follows. (See all Vertex AI pricing <a href=\"https:\/\/cloud.google.com\/vertex-ai\/generative-ai\/pricing\">here<\/a>):<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Model<\/td><td>Price \/ M input tokens<\/td><td>Price \/ M output tokens<\/td><\/tr><tr><td>Gemini 2.5 Flash (2.0 no longer available)<\/td><td>$0.30<\/td><td>$2.50<\/td><\/tr><tr><td>Llama4-Maverick<\/td><td>$0.35<\/td><td>$1.15<\/td><\/tr><tr><td>Mistral Small<\/td><td>$0.10<\/td><td>$0.30<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>It\u2019s clear that Mistral small over-performs from a quality and performance \/ dollar standpoint, costing one-third of the price or less per input token (which is where the bulk of our token usage is) compared to the other two models.&nbsp;<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Open source<\/h3>\n\n\n\n<p>Our top priority is building a great user experience. <a href=\"https:\/\/www.mozilla.org\/en-US\/about\/manifesto\/\">We also believe<\/a> that open source software is an integral part of building a healthy internet. When we can support open source while still delivering the highest quality experience, we will.<\/p>\n\n\n\n<p>In this category, Llama4 Maverick and Mistral Small come out ahead. While neither is fully open source (no training code or data has been released), both models have open weights paired with liberal usage policies. Gemini 2.5 Flash, on the other hand, is a proprietary model.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Model selection<\/h3>\n\n\n\n<p>When we considered all of the above, we decided to go with Mistral-Small to power our feature: it\u2019s fast, it\u2019s inexpensive, it has open weights, and it produces high quality summaries. What\u2019s not to like?<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Release and future directions<\/h2>\n\n\n\n<p>After selecting the model, we iterated on the prompt to ensure that we were delivering the best experience (see the upcoming blog post: Shake to Summarize: Prompt Engineering), and we released the solution in September of 2025.&nbsp;<\/p>\n\n\n\n<p>This project was an early foray in building LLM-powered features into the browser. As such, the model selection process we developed here helped us chart the course for model selection in our later AI integrations. Notably, the soon-to-be released Smart Window required choosing not just one, but multiple models to power the application\u2014giving users increased control over their experience.<br>Throughout this process, we learned that the \u201cbest\u201d model isn\u2019t the one with highest benchmark scores. It\u2019s the one that fits the context in which it\u2019s used\u2014aligning with the task, the budget, and <a href=\"https:\/\/blog.mozilla.org\/en\/mozilla\/rewiring-mozilla-ai-and-web\/\">Mozilla\u2019s commitment to open source<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We recently released a feature in the Firefox iOS mobile app called \u201cShake to Summarize\u201d. The reception was remarkably positive, earning an honorable mention on Time Magazine\u2019s best inventions of 2025.&nbsp; For anyone unfamiliar with Shake to Summarize, it\u2019s just what the name implies: when you\u2019re browsing a webpage, you can shake your phone to [&hellip;]<\/p>\n","protected":false},"author":2038,"featured_media":81609,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[464303],"tags":[317823],"coauthors":[464398],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Under the hood: The AI powering Firefox\u2019s Shake to Summarize<\/title>\n<meta name=\"description\" content=\"We recently released a feature in the Firefox mobile app called \u201cShake to Summarize\u201d. The reception was remarkably positive, earning an honorable mention on Time Magazine\u2019s best inventions of 2025.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/\",\"url\":\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/\",\"name\":\"Under the hood: The AI powering Firefox\u2019s Shake to Summarize\",\"isPartOf\":{\"@id\":\"https:\/\/blog.mozilla.org\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries.png\",\"datePublished\":\"2026-03-12T17:57:54+00:00\",\"dateModified\":\"2026-03-12T18:18:07+00:00\",\"author\":{\"@id\":\"https:\/\/blog.mozilla.org\/en\/#\/schema\/person\/070986d2aeec27ca01cf7bfa7aecc1ab\"},\"description\":\"We recently released a feature in the Firefox mobile app called \u201cShake to Summarize\u201d. The reception was remarkably positive, earning an honorable mention on Time Magazine\u2019s best inventions of 2025.\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#primaryimage\",\"url\":\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries.png\",\"contentUrl\":\"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries.png\",\"width\":1600,\"height\":953,\"caption\":\"Three smartphone screens showing Firefox article summarized with Apple Intelligence on translation updates for Chinese, Japanese, and Korean users.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.mozilla.org\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Under the hood: The AI powering Firefox\u2019s Shake to Summarize\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.mozilla.org\/en\/#website\",\"url\":\"https:\/\/blog.mozilla.org\/en\/\",\"name\":\"The Mozilla Blog\",\"description\":\"News and Updates about Mozilla\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.mozilla.org\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.mozilla.org\/en\/#\/schema\/person\/070986d2aeec27ca01cf7bfa7aecc1ab\",\"name\":\"rrando\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.mozilla.org\/en\/#\/schema\/person\/image\/c79395478956cba788418d94e434b829\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cd5950d6cea4249dece18a9b1f5ac0da?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cd5950d6cea4249dece18a9b1f5ac0da?s=96&d=mm&r=g\",\"caption\":\"rrando\"},\"url\":\"https:\/\/blog.mozilla.org\/en\/author\/rrando\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Under the hood: The AI powering Firefox\u2019s Shake to Summarize","description":"We recently released a feature in the Firefox mobile app called \u201cShake to Summarize\u201d. The reception was remarkably positive, earning an honorable mention on Time Magazine\u2019s best inventions of 2025.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/","url":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/","name":"Under the hood: The AI powering Firefox\u2019s Shake to Summarize","isPartOf":{"@id":"https:\/\/blog.mozilla.org\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#primaryimage"},"image":{"@id":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries.png","datePublished":"2026-03-12T17:57:54+00:00","dateModified":"2026-03-12T18:18:07+00:00","author":{"@id":"https:\/\/blog.mozilla.org\/en\/#\/schema\/person\/070986d2aeec27ca01cf7bfa7aecc1ab"},"description":"We recently released a feature in the Firefox mobile app called \u201cShake to Summarize\u201d. The reception was remarkably positive, earning an honorable mention on Time Magazine\u2019s best inventions of 2025.","breadcrumb":{"@id":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#primaryimage","url":"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries.png","contentUrl":"https:\/\/blog.mozilla.org\/wp-content\/blogs.dir\/278\/files\/2025\/08\/shake-to-summarize-summaries.png","width":1600,"height":953,"caption":"Three smartphone screens showing Firefox article summarized with Apple Intelligence on translation updates for Chinese, Japanese, and Korean users."},{"@type":"BreadcrumbList","@id":"https:\/\/blog.mozilla.org\/en\/firefox\/firefox-ai\/ai-powering-firefox-shake-to-summarize\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.mozilla.org\/en\/"},{"@type":"ListItem","position":2,"name":"Under the hood: The AI powering Firefox\u2019s Shake to Summarize"}]},{"@type":"WebSite","@id":"https:\/\/blog.mozilla.org\/en\/#website","url":"https:\/\/blog.mozilla.org\/en\/","name":"The Mozilla Blog","description":"News and Updates about Mozilla","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.mozilla.org\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blog.mozilla.org\/en\/#\/schema\/person\/070986d2aeec27ca01cf7bfa7aecc1ab","name":"rrando","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.mozilla.org\/en\/#\/schema\/person\/image\/c79395478956cba788418d94e434b829","url":"https:\/\/secure.gravatar.com\/avatar\/cd5950d6cea4249dece18a9b1f5ac0da?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cd5950d6cea4249dece18a9b1f5ac0da?s=96&d=mm&r=g","caption":"rrando"},"url":"https:\/\/blog.mozilla.org\/en\/author\/rrando\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/posts\/84386"}],"collection":[{"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/users\/2038"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/comments?post=84386"}],"version-history":[{"count":0,"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/posts\/84386\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/media\/81609"}],"wp:attachment":[{"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/media?parent=84386"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/categories?post=84386"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/tags?post=84386"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/blog.mozilla.org\/en\/wp-json\/wp\/v2\/coauthors?post=84386"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}