/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})();{"id":887,"date":"2024-12-08T16:47:03","date_gmt":"2024-12-08T16:47:03","guid":{"rendered":"https:\/\/thetach.com\/?p=887"},"modified":"2024-12-09T17:59:30","modified_gmt":"2024-12-09T17:59:30","slug":"google-ceo-sundar-pichai-major-changes-coming-to-search-in-2025","status":"publish","type":"post","link":"https:\/\/thetach.com\/?p=887","title":{"rendered":"Google CEO Sundar Pichai: Major Changes Coming to Search in 2025"},"content":{"rendered":"\n

Google CEO Sundar Pichai<\/strong> outlined new modifications that will alter the firm search engine<\/strong>, and, therefore, how users search for knowledge by 2025. These changes, underpinned by artificial intelligence (AI<\/strong>), are set to provide quicker, sharper, and much more personal search probing and production, reinventing Google Search.<\/strong><\/p>\n\n\n\n

At the recent New York Times\u2019 DealBook Summit, I asked Sundar Pichai about the status and the future of search and he pointed to AI<\/strong> as central to this change. \u201cSearch itself will continue to change profoundly in 2025,\u201d he stated  \u201cI do believe that, let alone in early, there are newer things that search can do compared to the current state.\u201d This aligns with Google constant application <\/strong>of AI technologies<\/strong> as a way of keeping up with the futuristic market.<\/p>\n\n\n\n

Pivotal Role of Artificial Intelligence<\/strong><\/h2>\n\n\n\n

AI<\/strong> has been among the key drivers in the innovation process at Google for several years, which enabled the company to create better and more targeted technologies. At the time, Google\u2019s CEO, Sundar Pichai, <\/strong>noted using AI-based models<\/strong> like BERT<\/strong> in delivering linked values and enhanced MUM<\/strong> Med to generate more effective search outcomes.<\/p>\n\n\n\n

However, from the assimilation of the three forms of artificial intelligence<\/strong> presented in this paper, the following facts will be evident by 2025: Such things as AIsummaries that are brief and accurate highlight the searched results are among the major trends that may enhance the understanding. Further, new features in Google Lens<\/strong> mean that users can now engage in web searches using videos, which not only makes information seeking easier but will also be more interactive. According to Sundar Pichai, over a billion users already interact with AI-powered tools such as Gemini-powered search features<\/strong>, illustrating the technology\u2019s widespread impact.<\/p>\n\n\n\n

Competition and Confidence<\/strong><\/h2>\n\n\n\n

At the summit, Google CEO Sundar Pichai <\/strong>discussed that there is a stiff rivalry between Microsoft and OpenAI<\/strong> in the market. More so, earlier this year, Microsoft\u2019s chief<\/strong> executive officer, Satya Nadella<\/strong> said that Google had a natural advantage in the race to AI because of the resources needed.<\/p>\n\n\n\n

To these accusations, Pichai responded, \u201cI challenge Microsoft to share models and then compare our models to Microsoft\u2019s models.\u201d They are using other people\u2019s models.\u201d His words are indicative of the company\u2019s confidence in the proprietary artificial intelligence that it holds, which means the company is in the ring and so is at the frontier. This competition strengthens the affirmance of constant improvement since Google\u2019s CEO Sundar Pichai <\/strong>vowed to deliver paramount advancements in AI<\/strong>.<\/p>\n\n\n\n

Gemini Model: The Future of Search<\/strong><\/h2>\n\n\n\n

Among the most eagerly awaited advances mentioned by Google CEO Sundar Pichai<\/strong> is the new version of the Gemini model<\/strong>. This kind of artificial intelligence is able to integrate both language and vision features for deep learning so that it can parse all kinds of queries and return highly personalized and relevant results.<\/p>\n\n\n

\n
\"Google<\/a>
Source: bolnews<\/a><\/figcaption><\/figure><\/div>\n\n\n

The Gemini model<\/strong> is considered an attempt to bolster Google against rivals such as Gemini model<\/strong> and the Gemini model<\/strong> With this update, Google Search<\/strong> will offer features such as Context-aware results, which adapt based on user intent. Enhanced visual search capabilities<\/strong> for seamless interaction with multimedia. Multilingual support for a global audience. These enhancements, guided by Google CEO Sundar Pichai\u2019s <\/strong>vision, aim to redefine the standard of search.<\/p>\n\n\n\n

Expanding the Scope of Search<\/strong><\/h2>\n\n\n\n

The changes that Google is planning to make in its next upgrade of Google Search<\/strong> not only enhance the usability of the tool but also increase the scope. They opine that using AI the search engine will be more user-friendly to users from all backgrounds. Such components as real-time translation<\/strong>, Google CEO Sundar Pichai<\/strong>, and contextual suggestions<\/strong> will help Google Search to remain relevant to people in different parts of the world. These milestones are in sync with the intent of Google CEO Sundar Pichai<\/strong> who has promised equitable access to innovation and the best technology.<\/p>\n\n\n\n

Ensuring Fair Use and Compensation<\/strong><\/h2>\n\n\n\n

More recently, issues relative to ownership and fair remuneration for creators have become issues of public discourse given the increasing adoption of Artificial Intelligence across the digital ecosystem. During the meeting, Google\u2019s CEO Sundar Pichai<\/strong> discussed this problem stating that there is no need to put creators or legislators in opposition to technology developers.<\/p>\n\n\n\n

Google has already established licensing agreements with platforms like Reddit<\/strong>, the Associated Press<\/strong>, and The New York Times<\/strong> to ensure that content creators are compensated fairly. Furthermore, Sundar Pichi talked about immutability and the idea of a future market where creators would create model content and if it is going to be used by AI models<\/strong> will directly compensate<\/strong> them for their work.<\/p>\n\n\n\n

Navigating the Age of Information Overload<\/strong><\/h2>\n\n\n\n

Since today\u2019s modern society produces enormous amounts of information in mere seconds, search has never been an object of such paramount importance. Google CEO Sundar Pichai<\/strong> was also keen on the need to reinvent how Google Search<\/strong> can assist users in addressing this phenomenon.<\/p>\n\n\n\n

\u201cAs in a world full of content, search becomes even more important,\u201d said Pichai. The massive transformation planned for 2025 should increase Google\u2019s capacity<\/strong> to serve up the best, most accurate, and timely results.<\/p>\n\n\n\n

Google Vision for 2025 and Beyond<\/strong><\/h2>\n\n\n\n

Moving forward,  Google\u2019s CEO Sundar Pichai<\/strong> continues to focus on advancing knowledge in AI technology<\/strong>. By redesigning and upgrading such fundamental features as Gemini, Google Lens<\/strong>, and artificially intelligent summaries<\/strong>, the company is gradually getting ready to switch tomorrow\u2019s search to a different mode.<\/p>\n\n\n

\n
\"AI-powered
Source: proPakistani<\/a><\/figcaption><\/figure><\/div>\n\n\n

So, by addressing the needs of users, controlling the level of competition, and fairly rewarding creators Google is preparing the company for the title of leader in the sphere of the IT market<\/strong>. The shifts outlined below are all but revolutionary and made possible by Google CEO Sundar Pichai<\/strong> vision of the future digital experience.<\/p>\n\n\n\n

Conclusion<\/strong><\/h2>\n\n\n\n

Google CEO Sundar Pichai<\/strong> has laid down the motion for a complete reinvention of Google Search<\/strong> within the next 4 years. Core to this approach AI<\/strong> and some of the things that will result from it include but are not limited to the Gemini model,<\/strong> better summaries, and the ability to search for images using AI.  By addressing challenges like competition and content creator compensation, Google demonstrates its commitment to innovation and inclusivity. All these lead to information overload and as such Google A<\/strong>I will continue to develop ways through which users get accurate information. With the leadership of Pichai, these updates will keep Google at the frontier of the technological world, reinventing itself in the way search engines transform the world. The profound changes ahead highlight Google\u2019s vision <\/strong>to keep search essential in the evolving digital landscape.<\/p>\n\n\n\n

FAQs<\/strong><\/h2>\n\n\n\n
What major updates will Google Search introduce in 2025?<\/strong><\/strong>

Google Search will integrate AI-driven features<\/strong>, including Gemini updates<\/strong> and AI summaries<\/strong>.<\/p> <\/div>

How does Google ensure fair compensation for content creators?<\/strong><\/strong>

Creators are compensated through licensing agreements and a proposed future marketplace<\/strong>.<\/p> <\/div>

What did Google CEO Sundar Pichai say about Microsoft\u2019s AI models?<\/strong><\/strong>

Pichai questioned Microsoft\u2019s reliance on OpenAI, highlighting Google\u2019s proprietary AI technology<\/strong>.<\/p> <\/div>

How will the Gemini model improve search capabilities?<\/strong><\/strong>

The Gemini model<\/strong> combines language comprehension<\/strong> and visual learning<\/strong>, enabling smarter results.<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"

Google CEO Sundar Pichai outlined new modifications that will alter the firm search engine, and, therefore, how users search for knowledge by 2025. These changes, underpinned by artificial intelligence (AI), are set to provide quicker, sharper, and much more personal search probing and production, reinventing Google Search. At the recent New York Times\u2019 DealBook Summit, … Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":888,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[345,344,346],"class_list":["post-887","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-it-updates","tag-ai-powered-search-transformation","tag-google-ceo-sundar-pichai","tag-google-search-updates-2025"],"yoast_head":"\nGoogle CEO Sundar Pichai: Major ChangesComing Search in 2025<\/title>\n<meta name=\"description\" content=\"Google CEO Sundar Pichai reveals transformative AI-driven updates to Google Search, promising profound changes by 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:\/\/thetach.com\/?p=887\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Google CEO Sundar Pichai: Major ChangesComing Search in 2025\" \/>\n<meta property=\"og:description\" content=\"Google CEO Sundar Pichai reveals transformative AI-driven updates to Google Search, promising profound changes by 2025.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thetach.com\/?p=887\" \/>\n<meta property=\"og:site_name\" content=\"The Tach\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-08T16:47:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-09T17:59:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Google-CEO-Sundar-Pichai.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"948\" \/>\n\t<meta property=\"og:image:height\" content=\"625\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"burhan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"burhan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\/\/thetach.com\/?p=887\",\"url\":\"https:\/\/thetach.com\/?p=887\",\"name\":\"Google CEO Sundar Pichai: Major ChangesComing Search in 2025\",\"isPartOf\":{\"@id\":\"https:\/\/thetach.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thetach.com\/?p=887#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thetach.com\/?p=887#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Google-CEO-Sundar-Pichai.jpg\",\"datePublished\":\"2024-12-08T16:47:03+00:00\",\"dateModified\":\"2024-12-09T17:59:30+00:00\",\"author\":{\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24\"},\"description\":\"Google CEO Sundar Pichai reveals transformative AI-driven updates to Google Search, promising profound changes by 2025.\",\"breadcrumb\":{\"@id\":\"https:\/\/thetach.com\/?p=887#breadcrumb\"},\"mainEntity\":[{\"@id\":\"https:\/\/thetach.com\/?p=887#faq-question-1733675931737\"},{\"@id\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767124131\"},{\"@id\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767135296\"},{\"@id\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767148345\"}],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thetach.com\/?p=887\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thetach.com\/?p=887#primaryimage\",\"url\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Google-CEO-Sundar-Pichai.jpg\",\"contentUrl\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Google-CEO-Sundar-Pichai.jpg\",\"width\":948,\"height\":625,\"caption\":\"Google\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thetach.com\/?p=887#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thetach.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Google CEO Sundar Pichai: Major Changes Coming to Search in 2025\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thetach.com\/#website\",\"url\":\"https:\/\/thetach.com\/\",\"name\":\"The Tach\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thetach.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24\",\"name\":\"burhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g\",\"caption\":\"burhan\"},\"sameAs\":[\"https:\/\/thetach.com\"],\"url\":\"https:\/\/thetach.com\/?author=1\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=887#faq-question-1733675931737\",\"position\":1,\"url\":\"https:\/\/thetach.com\/?p=887#faq-question-1733675931737\",\"name\":\"What major updates will Google Search introduce in 2025?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Google Search will integrate <strong>AI-driven features<\/strong>, including <strong>Gemini updates<\/strong> and <strong>AI summaries<\/strong>.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767124131\",\"position\":2,\"url\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767124131\",\"name\":\"How does Google ensure fair compensation for content creators?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Creators are compensated through licensing agreements and a proposed <strong>future marketplace<\/strong>.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767135296\",\"position\":3,\"url\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767135296\",\"name\":\"What did Google CEO Sundar Pichai say about Microsoft\u2019s AI models?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Pichai questioned Microsoft\u2019s reliance on OpenAI, highlighting Google\u2019s proprietary <strong>AI technology<\/strong>.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767148345\",\"position\":4,\"url\":\"https:\/\/thetach.com\/?p=887#faq-question-1733767148345\",\"name\":\"How will the Gemini model improve search capabilities?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"The <strong>Gemini model<\/strong> combines <strong>language comprehension<\/strong> and <strong>visual learning<\/strong>, enabling smarter results.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Google CEO Sundar Pichai: Major ChangesComing Search in 2025","description":"Google CEO Sundar Pichai reveals transformative AI-driven updates to Google Search, promising profound changes by 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:\/\/thetach.com\/?p=887","og_locale":"en_US","og_type":"article","og_title":"Google CEO Sundar Pichai: Major ChangesComing Search in 2025","og_description":"Google CEO Sundar Pichai reveals transformative AI-driven updates to Google Search, promising profound changes by 2025.","og_url":"https:\/\/thetach.com\/?p=887","og_site_name":"The Tach","article_published_time":"2024-12-08T16:47:03+00:00","article_modified_time":"2024-12-09T17:59:30+00:00","og_image":[{"width":948,"height":625,"url":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Google-CEO-Sundar-Pichai.jpg","type":"image\/jpeg"}],"author":"burhan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"burhan","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["WebPage","FAQPage"],"@id":"https:\/\/thetach.com\/?p=887","url":"https:\/\/thetach.com\/?p=887","name":"Google CEO Sundar Pichai: Major ChangesComing Search in 2025","isPartOf":{"@id":"https:\/\/thetach.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thetach.com\/?p=887#primaryimage"},"image":{"@id":"https:\/\/thetach.com\/?p=887#primaryimage"},"thumbnailUrl":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Google-CEO-Sundar-Pichai.jpg","datePublished":"2024-12-08T16:47:03+00:00","dateModified":"2024-12-09T17:59:30+00:00","author":{"@id":"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24"},"description":"Google CEO Sundar Pichai reveals transformative AI-driven updates to Google Search, promising profound changes by 2025.","breadcrumb":{"@id":"https:\/\/thetach.com\/?p=887#breadcrumb"},"mainEntity":[{"@id":"https:\/\/thetach.com\/?p=887#faq-question-1733675931737"},{"@id":"https:\/\/thetach.com\/?p=887#faq-question-1733767124131"},{"@id":"https:\/\/thetach.com\/?p=887#faq-question-1733767135296"},{"@id":"https:\/\/thetach.com\/?p=887#faq-question-1733767148345"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thetach.com\/?p=887"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetach.com\/?p=887#primaryimage","url":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Google-CEO-Sundar-Pichai.jpg","contentUrl":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Google-CEO-Sundar-Pichai.jpg","width":948,"height":625,"caption":"Google"},{"@type":"BreadcrumbList","@id":"https:\/\/thetach.com\/?p=887#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thetach.com\/"},{"@type":"ListItem","position":2,"name":"Google CEO Sundar Pichai: Major Changes Coming to Search in 2025"}]},{"@type":"WebSite","@id":"https:\/\/thetach.com\/#website","url":"https:\/\/thetach.com\/","name":"The Tach","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thetach.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24","name":"burhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetach.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g","caption":"burhan"},"sameAs":["https:\/\/thetach.com"],"url":"https:\/\/thetach.com\/?author=1"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=887#faq-question-1733675931737","position":1,"url":"https:\/\/thetach.com\/?p=887#faq-question-1733675931737","name":"What major updates will Google Search introduce in 2025?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Google Search will integrate <strong>AI-driven features<\/strong>, including <strong>Gemini updates<\/strong> and <strong>AI summaries<\/strong>.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=887#faq-question-1733767124131","position":2,"url":"https:\/\/thetach.com\/?p=887#faq-question-1733767124131","name":"How does Google ensure fair compensation for content creators?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Creators are compensated through licensing agreements and a proposed <strong>future marketplace<\/strong>.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=887#faq-question-1733767135296","position":3,"url":"https:\/\/thetach.com\/?p=887#faq-question-1733767135296","name":"What did Google CEO Sundar Pichai say about Microsoft\u2019s AI models?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Pichai questioned Microsoft\u2019s reliance on OpenAI, highlighting Google\u2019s proprietary <strong>AI technology<\/strong>.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=887#faq-question-1733767148345","position":4,"url":"https:\/\/thetach.com\/?p=887#faq-question-1733767148345","name":"How will the Gemini model improve search capabilities?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"The <strong>Gemini model<\/strong> combines <strong>language comprehension<\/strong> and <strong>visual learning<\/strong>, enabling smarter results.","inLanguage":"en-US"},"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/887","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=887"}],"version-history":[{"count":2,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/887\/revisions"}],"predecessor-version":[{"id":906,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/887\/revisions\/906"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/media\/888"}],"wp:attachment":[{"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=887"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}