<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Startups &amp; SMB</title><link>https://cloud.google.com/blog/topics/startups/</link><description>Startups &amp; SMB</description><atom:link href="https://cloudblog.withgoogle.com/blog/topics/startups/rss/" rel="self"></atom:link><language>en</language><lastBuildDate>Thu, 20 Nov 2025 22:38:31 +0000</lastBuildDate><image><url>https://cloud.google.com/blog/topics/startups/static/blog/images/google.a51985becaa6.png</url><title>Startups &amp; SMB</title><link>https://cloud.google.com/blog/topics/startups/</link></image><item><title>Technical guide: Four steps for startups to build multi-agent systems</title><link>https://cloud.google.com/blog/topics/startups/four-steps-for-startups-to-build-multi-agent-systems/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;AI agents are transforming the nature of work by automating complex workflows with speed, scale, and accuracy.  At the same time, startups are constantly moving, growing, and evolving – which means they need clear ways to implement agentic workflows, not piles of documentation that send precious resources into a tailspin.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Today, we’ll share a simple four-step framework to help startups build multi-agent systems.  Multi-agentic workflows can be complicated, but there are easy ways to get started and see real gains without spending weeks in production. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;In this post, we’ll show you a systematic, operations-driven roadmap for navigating this new landscape, using one of our projects to provide concrete examples for the concepts laid out in the &lt;/span&gt;&lt;a href="https://cloud.google.com/resources/content/building-ai-agents"&gt;official Startups technical guide: AI agents&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;Step #1: Build your foundation &lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The startups technical guide outlines three primary paths for leveraging agents:&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Pre-built Google agents&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Partner agents&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Custom-built agents (agents you build on your own).&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To build our Sales Intelligence Agent, we needed to automate a highly specific, multi-step workflow that involved our own proprietary logic and would eventually connect to our own data sources. This required comprehensive orchestration control and tool definition that only a "code-first" approach could provide.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;That’s why we chose Google's &lt;/span&gt;&lt;a href="https://google.github.io/adk-docs/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Agent Development Kit (ADK)&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; as our framework. It offered the balance of power and flexibility necessary to build a truly custom, defensible system, combined with high-level abstractions for agent composition and orchestration that accelerated our development.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/Gemini_Generated_Image_twua2twua2twua2t_1.png"
        
          alt="image1"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;p data-block-key="1wo7e"&gt;Logical flow on how our agent works&lt;/p&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;Step #2: Build out the engine &lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We took a hybrid approach when building our agent architecture, which is managed by a top-level &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;root_agent&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; in &lt;/span&gt;&lt;a href="https://github.com/Mayopepe/ai-agent-blog-series" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;orchestrator.py.&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; Its primary role is to act as an intelligent controller &lt;/span&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;using an LLM Agent for flexible user interaction&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;, while delegating the core processing loop to more deterministic ADK components like &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;LoopAgent&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; and custom &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;BaseAgent&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; classes.&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Conversational onboarding: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;The LLM Agent starts by acting as a conversational "front-door," interacting with the user to collect their name and email.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Workflow delegation: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;Once it has the user's information, it delegates the main workflow to a powerful LoopAgent defined in its sub_agents list.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Data loading: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;The first step inside the LoopAgent is a custom agent called the CompanyLoopController. On the very first iteration of the loop, its job is to call our crm_tool to fetch the list of companies from the Google Sheet and load them into the session state.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Tool-based execution in a loop: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; The loop processes each company by calling two key tools: the &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;research_pipeline&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; tool that encapsulates our complex &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;company_researcher_agent&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; and the &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;sales_briefing_agent&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; tool  that encapsulates the &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;sales_briefing_agent&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;. This "Agent-as-a-Tool" pattern is crucial for state isolation (more in Step 3).&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This hybrid pattern gives us the best of both worlds: the flexibility of an LLM for user interaction and the structured, reliable control of a workflow agent with isolated, tool-based execution. &lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;Step #3: Tools, state, and reliability&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;An agent is only as powerful as the tools it can wield. To be truly useful, our system needed to connect to live data, not just a static local file. To achieve this, we built a custom tool, crm_tool.py, to allow our agent to read its list of target companies directly from a Google Sheet.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To build our read_companies_from_sheet function, we focused on two key areas:&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Secure authentication&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;: We used a Google Cloud Service Account for authentication, a best practice for production systems. Our code includes a helper function, get_sheets_service(), that centralizes all the logic for securely loading the service account credentials and initializing the API client.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Configuration management:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; All configuration, including the SPREADSHEET_ID, is managed via our .env file. This decouples the tool's logic from its configuration, making it portable and secure.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This approach transformed our agent from one that could only work with local data to one that could securely interact with a live, cloud-based source of truth.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;strong style="vertical-align: baseline;"&gt;The "Agent-as-a-Tool" Pattern for managing state in loops:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; A critical challenge in looping workflows is ensuring state isolation between iterations. ADK's &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;session.state&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; persists, which can cause 'context rot' if not managed. Our solution was the &lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt;"Agent-as-a-Tool"&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; pattern. Instead of running the complex &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;company_researcher_agent&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; directly in the loop, we encapsulated its entire &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;SequentialAgent&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; pipeline into a single, isolated &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;AgentTool&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; (&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;company_researcher_agent_tool&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;).&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Every time the loop calls this tool, the ADK provides a clean, temporary context for its execution. All internal steps (planning, QA loop, compiling) happen within this isolated context. When the tool returns the final &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;compiled_report&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;, the temporary context is discarded, guaranteeing a fresh start for the next company. This pattern provides perfect state isolation by design, making the loop robust without manual cleanup logic.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;Step #4: Go from Localhost to a scalable deployed product &lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Here is our recommended three-step blueprint for moving from a local prototype to a production-ready agent on Google Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong style="vertical-align: baseline;"&gt;1. Adopt a production-grade project template&lt;br/&gt;&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;Our most critical lesson was that a simple, local-first project structure is not built for the rigors of the cloud. The turning point for our team was adopting &lt;/span&gt;&lt;a href="https://googlecloudplatform.github.io/agent-starter-pack/cli/create.html" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google's official Agent Starter Pack&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. This professional template is not just a suggestion; for any serious project, we now consider it a requirement. It provides three non-negotiable foundations for success out of the box:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Robust dependency management:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; It replaces the simplicity of local tools like Poetry with the production-grade power of PDM and uv, ensuring that every dependency is locked and every deployment is built from a fast, deterministic, and repeatable environment.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;A pre-configured CI/CD pipeline:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; It comes with a ready-to-use continuous integration and deployment pipeline for Google Cloud Build, which automates the entire process of testing, building, and deploying your agent.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Multi-environment support:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; The template is pre-configured for separate staging and production environments, a best practice that allows you to safely test changes in an isolated staging environment before promoting them to your live users.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The process begins by using the official command-line tool to generate your project's local file structure. This prompts you to choose a base template; we used the "ADK Base Template" and then moved our agent logic into the newly created source code files (App) .&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;#x27;# Ensure pipx is installed\r\npip install --user pipx\r\n\r\n# Run the project generator to create the local file structure\r\npipx run agent-starter-pack create your-new-agent-project&amp;#x27;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb842f50910&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The final professional project structure:&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;#x27;final-agent-project/\r\n├── .github/              # Contains the automated CI/CD workflow configuration\r\n│   └── workflows/\r\n├── app/                  # Core application source code for the agent\r\n│   ├── __init__.py\r\n│   ├── agent_engine_app.py\r\n│   ├── orchestrator.py     # The main agent that directs the workflow\r\n│   ├── company_researcher/ # Sub-agent for performing research\r\n│   ├── briefing_agent/   # Sub-agent for drafting emails\r\n│   └── tools/              # Custom tools the agents can use\r\n├── tests/                # Automated tests for your agent\r\n├── .env                  # Local environment variables (excluded from git)\r\n├── pyproject.toml        # Project definition and dependencies\r\n└── uv.lock               # Locked dependency versions for speed and consistency&amp;#x27;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb842f50b20&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;With the local files created, the next step is to provision the cloud infrastructure. From inside the new project directory, you run the setup-cicd command. This interactive wizard connects to your Google Cloud and GitHub accounts, then uses Terraform under the hood to automatically build your entire cloud environment, including the CI/CD pipeline.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;#x27;# Navigate into your new project directory\r\ncd your-new-agent-project\r\n\r\n# Run the interactive CI/CD setup wizard\r\npipx run agent-starter-pack setup-cicd&amp;#x27;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb842f50550&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;strong style="vertical-align: baseline;"&gt;2. Cloud Build &lt;br/&gt;&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;Once the setup is complete with the starter pack, your development workflow becomes incredibly simple. Every time a developer pushes a new commit to the main branch of your GitHub repository:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Google Cloud Build fetches your latest code.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;It builds your agent into a secure, portable container image. This process includes installing all the dependencies from your uv.lock file, guaranteeing a perfect, repeatable build every single time.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;It deploys this new version to your staging environment. Within minutes, your latest code is live and ready for testing in a real cloud environment.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;It waits for your approval. The pipeline is configured to require a manual "Approve" click in the Cloud Build console before it will deploy that exact same, tested version to your production environment. This gives you the perfect balance of automation and control.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong style="vertical-align: baseline;"&gt;3. Deploy on Agent Engine and Cloud Run &lt;br/&gt;&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;The final piece of the puzzle is where the agent actually runs. Cloud Build deploys your agent to Vertex AI Agent Engine, which provides the secure, public endpoint and management layer for your agent.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Crucially, Agent Engine is built on top of Google Cloud Run, a powerful serverless platform. This means you don't have to manage any servers yourself. Your agent automatically scales up to handle thousands of users, and scales down to zero when not in use, meaning you only pay for the compute you actually consume. &lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Get started&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Ready to build your own?&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Explore the&lt;/span&gt;&lt;a href="https://github.com/Mayopepe/ai-agent-blog-series" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt; code&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; for our Sales Intelligence Agent on GitHub.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Dive deeper with the &lt;/span&gt;&lt;a href="https://cloud.google.com/resources/content/building-ai-agents?e=48754805&amp;amp;hl=en"&gt;Startups technical guide: AI agents&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Get started with production deployments using the &lt;/span&gt;&lt;a href="https://github.com/GoogleCloudPlatform/agent-starter-pack" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Agent Starter Pack&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;No matter where you are with AI adoption, we are here to help. &lt;/span&gt;&lt;a href="https://cloud.google.com/contact/form?hl=nl"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Contact our Startup team&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; today and you could get up to $350,000 USD in cloud credits with the &lt;/span&gt;&lt;a href="https://cloud.google.com/startup/apply?utm_source=cloud_sfdc&amp;amp;utm_medium=et&amp;amp;utm_campaign=FY21-Q1-global-demandgen-website-cs-startup_program_mc&amp;amp;utm_content=futureofai&amp;amp;utm_term=-&amp;amp;hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Cloud Program&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;,&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;p&gt;&lt;sup&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;The technical journey and insights detailed in this blog post were the result of a true team effort. I want to extend my sincere appreciation to the core collaborators whose work provided the foundation for this article:&lt;/span&gt;&lt;strong style="font-style: italic; vertical-align: baseline;"&gt; Luis Sala&lt;/strong&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;,&lt;/span&gt;&lt;strong style="font-style: italic; vertical-align: baseline;"&gt; Isaac Attuah&lt;/strong&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;strong style="font-style: italic; vertical-align: baseline;"&gt;Ishana Shinde&lt;/strong&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;strong style="font-style: italic; vertical-align: baseline;"&gt;Andrew Thankson&lt;/strong&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;, and&lt;/span&gt;&lt;strong style="font-style: italic; vertical-align: baseline;"&gt; Kristin Kim&lt;/strong&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;. Their hands-on contributions to architecting and building the agent were essential to the lessons shared here.&lt;/span&gt;&lt;/sup&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 13 Nov 2025 17:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/four-steps-for-startups-to-build-multi-agent-systems/</guid><category>Startups</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Technical guide: Four steps for startups to build multi-agent systems</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/four-steps-for-startups-to-build-multi-agent-systems/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Oluwamayowa Awojuyigbe</name><title>Customer Engineer, Google Cloud</title><department></department><company></company></author></item><item><title>Want to get building production-ready AI agents? Here’s where startups should start.</title><link>https://cloud.google.com/blog/topics/startups/startup-guide-ai-agents-production-ready-ai-how-to/</link><description>&lt;div class="block-paragraph"&gt;&lt;p data-block-key="i90pu"&gt;Startups are using &lt;a href="https://cloud.google.com/discover/what-are-ai-agents?e=48754805&amp;amp;hl=en"&gt;agentic AI&lt;/a&gt; to automate complex workflows, create novel user experiences, and solve business problems that were once considered technically impossible. Still, charting the optimal path forward — especially with the integration of AI agents — often presents significant technical complexity&lt;/p&gt;&lt;p data-block-key="1vd9p"&gt;To help startups navigate this new landscape, we’re launching our &lt;a href="https://cloud.google.com/resources/content/building-ai-agents"&gt;&lt;i&gt;Startup technical guide: AI agents&lt;/i&gt;&lt;/a&gt;. It provides a systematic, operations-driven roadmap for embracing the potential of agentic systems.&lt;/p&gt;&lt;p data-block-key="64hom"&gt;What does this potential look like? AI agents combine the intelligence of advanced AI models with access to tools so they can take actions on your behalf, under your control. Unlike traditional AI, agentic AI can break down intricate tasks, refine plans, and dynamically utilize external resources and tools. The key takeaway is that &lt;a href="https://cloud.google.com/transform/ai-agents-how-to-make-them-your-new-partners-for-business-innovation"&gt;AI agents can tackle complex, multi-step problems&lt;/a&gt;, ultimately transforming from a passive tool into a proactive problem-solver.&lt;/p&gt;&lt;p data-block-key="7nqrc"&gt;If your startup is looking to get in on the agentic AI action, here are some initial steps to consider. And when you’re ready to get building, you can get &lt;a href="https://cloud.google.com/resources/content/building-ai-agents"&gt;more details in our guide&lt;/a&gt; or even &lt;a href="https://cloud.google.com/contact"&gt;reach out to one of our AI experts&lt;/a&gt; at Google Cloud.&lt;/p&gt;&lt;h3 data-block-key="cig75"&gt;&lt;b&gt;Choose your path: Build, use, or integrate&lt;/b&gt;&lt;/h3&gt;&lt;p data-block-key="92ceg"&gt;Every startup’s journey is unique, which is why Google Cloud offers a flexible agent ecosystem that supports the comprehensive development of agentic systems. You can:&lt;/p&gt;&lt;ul&gt;&lt;li data-block-key="16b0e"&gt;&lt;b&gt;Build your own agents:&lt;/b&gt; For teams that require a high degree of control over agent behavior, the open-source &lt;a href="https://google.github.io/adk-docs/" target="_blank"&gt;Agent Development Kit (ADK)&lt;/a&gt; is your go-to development framework. ADK is built for a custom, code-first approach, empowering developers to build, manage, evaluate, and deploy AI-powered agents. For an application-first approach, &lt;a href="https://cloud.google.com/gemini-enterprise?hl=nl"&gt;Gemini Enterprise&lt;/a&gt; orchestrates your entire AI workforce and empowers non-technical team members to build custom agents using a no-code designer.&lt;/li&gt;&lt;li data-block-key="e4rv"&gt;&lt;b&gt;Use Google Cloud agents:&lt;/b&gt; With rapid prototyping and easy ways to integrate AI into your existing apps, managed agents let you focus on core business logic rather than managing infrastructure. &lt;a href="https://codeassist.google/" target="_blank"&gt;Gemini Code Assist&lt;/a&gt; is an AI-powered assistant for developers, while &lt;a href="https://cloud.google.com/products/gemini/cloud-assist"&gt;Gemini Cloud Assist&lt;/a&gt; is an AI expert for your Google Cloud environment.&lt;/li&gt;&lt;li data-block-key="a1bs3"&gt;&lt;b&gt;Bring in partner agents:&lt;/b&gt; For more specialized use cases, you can easily integrate third-party or open-source agents into your stack via the Google Cloud Marketplace. You can also explore the Agent Garden to deploy prebuilt ADK agents that already support data reasoning and inter-agent collaboration.&lt;/li&gt;&lt;/ul&gt;&lt;p data-block-key="etef2"&gt;No matter which path you choose, our ecosystem is designed for interoperability, built on open standards like the &lt;a href="https://googleapis.github.io/genai-toolbox/getting-started/mcp_quickstart/" target="_blank"&gt;Model Context Protocol (MCP)&lt;/a&gt; and the &lt;a href="https://a2a-protocol.org/latest/" target="_blank"&gt;Agent2Agent (A2A)&lt;/a&gt; protocol.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/2_-__build_use_integrate_.max-1000x1000.png"
        
          alt="2 -  build use integrate"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;h3 data-block-key="i90pu"&gt;&lt;b&gt;4 steps for building your first agent&lt;/b&gt;&lt;/h3&gt;&lt;p data-block-key="msd6"&gt;The &lt;i&gt;Startups technical guide: AI agents&lt;/i&gt; provides a complete roadmap for building production-ready AI agents. Here’s four core steps we’ve identified that can help define your first agent, using Agent Development Kit (ADK).&lt;/p&gt;&lt;p data-block-key="63o96"&gt;&lt;b&gt;Step 1: Give your agent an identity&lt;/b&gt;&lt;/p&gt;&lt;p data-block-key="r896"&gt;First, define your agent's core identity. You’ll want to give it a unique name for logging and delegation, a clear description of its capabilities so other agents can route tasks to it, and identify the right AI foundation model (like &lt;a href="https://cloud.google.com/vertex-ai/generative-ai/docs/models/gemini/2-5-pro"&gt;Gemini 2.5 Pro&lt;/a&gt; or &lt;a href="https://cloud.google.com/vertex-ai/generative-ai/docs/open-models/use-gemma"&gt;Gemma&lt;/a&gt;) to power its reasoning. Precision here is critical. The model you’re using treats every part of this definition as a prompt, and vague descriptions can lead to "context poisoning," causing the agent to pursue incorrect goals.&lt;/p&gt;&lt;p data-block-key="c5821"&gt;&lt;b&gt;Step 2: Write the “prime directive" with instructions&lt;/b&gt;&lt;/p&gt;&lt;p data-block-key="dhkh4"&gt;Next, give your agent its "prime directive" using the instruction parameter. This is where you define its persona, core objectives, and do's and don'ts. Effective instructions clearly specify the desired outcomes for your agent, provide examples for complex tasks (e.g. &lt;a href="https://cloud.google.com/vertex-ai/generative-ai/docs/learn/prompts/few-shot-examples"&gt;few-shot prompting&lt;/a&gt;), and guide the agent on how to use its tools.&lt;/p&gt;&lt;p data-block-key="5fpv0"&gt;&lt;b&gt;Step 3: Grant superpowers with tools&lt;/b&gt;&lt;/p&gt;&lt;p data-block-key="1hiit"&gt;Transform your agent from a pure conversationalist into a system that can take action by equipping it with functions to call external APIs, search databases, or interact with other systems. In doing so, you grant it broader capabilities. For example, a bug assistant agent uses tools to fetch user details from a CRM or create a ticket in a project management system. Since the agent chooses which tool to use based on its name and description, making them clear and unique is crucial to avoid looping behaviors or incorrect actions.&lt;/p&gt;&lt;p data-block-key="7788e"&gt;&lt;b&gt;Step 4: Master the lifecycle: test, deploy, operate&lt;/b&gt;&lt;/p&gt;&lt;p data-block-key="20bbi"&gt;Building an agent is a continuous cycle, not a one-off task. Because agentic systems are non-deterministic, standard unit tests are insufficient. Our guide shows you how to evaluate an agent’s "trajectory" — its step-by-step reasoning — to ensure quality and reliability. This operational rigor, which we call AgentOps, is key to confidently deploying your agent on platforms like &lt;a href="https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/overview"&gt;Vertex AI Agent Engine&lt;/a&gt; or &lt;a href="https://cloud.google.com/run?e=48754805&amp;amp;hl=en"&gt;Cloud Run&lt;/a&gt; and operating it safely in production.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/3-_diagram.max-1000x1000.png"
        
          alt="3- diagram"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;h3 data-block-key="i90pu"&gt;&lt;b&gt;Agents already in action&lt;/b&gt;&lt;/h3&gt;&lt;p data-block-key="11hd2"&gt;Startups are constantly innovating their agentic journeys , here’s a look at two startups that use Google Cloud's models and architecture to run their agentic systems:&lt;/p&gt;&lt;p data-block-key="cj5h2"&gt;&lt;b&gt;Actionable insights for better employee engagement&lt;/b&gt;&lt;/p&gt;&lt;p data-block-key="crclg"&gt;&lt;a href="https://igafnl.com/click?redirect=http%3A%2F%2Fwotter.ai&amp;amp;dID=1753373323338&amp;amp;hashId=53402855cd3a22a7c86c9eda9fa2c16837ceacf8bc9517f02f822129b49015fe89fccd&amp;amp;linkName=Wotter" target="_blank"&gt;Wotter&lt;/a&gt;, a provider of next-generation Employee Engagement solutions, seeks to better understand what employees want and empower organizations with the insights they need to get the best out of their people by asking the right question to the right person at the right time.&lt;/p&gt;&lt;p data-block-key="62g62"&gt;&lt;a href="https://igafnl.com/click?redirect=https%3A%2F%2Fcloud.google.com%2Fvertex-ai%2Fgenerative-ai%2Fdocs%2Fmodels%2Fgemini%2F2-5-flash&amp;amp;dID=1753373323338&amp;amp;hashId=53402855cd3a22a7c86c9eda9fa2c16837ceacf8bc9517f02f822129b49015fe89fccd&amp;amp;linkName=Gemini%202.5%20Flash"&gt;Gemini 2.5 Flash&lt;/a&gt; was the right foundation model for Wotter’s smart assistant, blending speed with long-context reasoning. Wotter’s Flash models use agentic methods to manage extensive and ongoing sources of data, such as employee interactions and feedback, while still responding to queries on this data in seconds - and at a lower cost per query.&lt;/p&gt;&lt;p data-block-key="bao0i"&gt;&lt;b&gt;Eliminate a long-standing legal industry pain point&lt;/b&gt;&lt;/p&gt;&lt;p data-block-key="6da3d"&gt;As people in the legal industry know too well, complex document reviews can ruin nights and weekends while turning focus away from strategic work. Enter &lt;a href="https://www.harvey.ai/" target="_blank"&gt;Harvey&lt;/a&gt;, which is equipping legal professionals with domain-specific AI to maximize efficiency and keep legal professionals’ attention on activities that move the needle for their firms and clients.&lt;/p&gt;&lt;p data-block-key="al26g"&gt;Harvey evaluated several foundation models and ultimately found that Gemini 2.5 Pro achieved the leading score of 85.02% on its BigLaw Bench benchmark, the first of its kind to represent complex legal tasks. Gemini 2.5 Pro showcased strong reasoning across inputs consisting of hundreds of pages of materials—a common scenario in legal work. The model then used these materials to generate longer-form and comprehensive outputs, enabling deeper insights and analyses.&lt;/p&gt;&lt;p data-block-key="44adr"&gt;These core capabilities proved Gemini 2.5 Pro’s potential across complex legal work that requires reasoning over large sets of documents to support diligence, review, and use case drafting. Further, Vertex AI provides the stringent security and privacy guarantees that build trust in the Harvey platform among clientele. Gemini and Vertex AI are now an important part of Harvey’s vision for future product development.&lt;/p&gt;&lt;h3 data-block-key="2hmf5"&gt;&lt;b&gt;Build what's next, faster&lt;/b&gt;&lt;/h3&gt;&lt;p data-block-key="d1bd8"&gt;&lt;a href="https://cloud.google.com/resources/content/building-ai-agents"&gt;The &lt;i&gt;Startup technical guide: AI agents&lt;/i&gt;&lt;/a&gt; provides the blueprint your team needs to turn your vision into a production-ready reality. By using a code-first framework like ADK and the operational principles in this guide, you can move beyond informal “vibe-testing” to a rigorous, reliable process for building and managing your agent’s entire lifecycle. For your startup, this disciplined approach becomes a powerful competitive advantage.&lt;/p&gt;&lt;p data-block-key="5qctq"&gt;&lt;i&gt;No matter where you are with AI adoption, we are here to help.&lt;/i&gt; &lt;a href="https://cloud.google.com/contact/form?hl=nl"&gt;&lt;i&gt;Contact our Startup team&lt;/i&gt;&lt;/a&gt;&lt;i&gt; today and you could get up to $350,000 USD in cloud credits with the&lt;/i&gt; &lt;a href="https://cloud.google.com/startup/apply?utm_source=cloud_sfdc&amp;amp;utm_medium=et&amp;amp;utm_campaign=FY21-Q1-global-demandgen-website-cs-startup_program_mc&amp;amp;utm_content=futureofai&amp;amp;utm_term=-&amp;amp;hl=en"&gt;&lt;i&gt;Google for Startups Cloud Program&lt;/i&gt;&lt;/a&gt;&lt;i&gt;,&lt;/i&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Tue, 07 Oct 2025 21:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/startup-guide-ai-agents-production-ready-ai-how-to/</guid><category>AI &amp; Machine Learning</category><category>Training and Certifications</category><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/startup-technical-guide-ai-agents-header2.max-600x600.png" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Want to get building production-ready AI agents? Here’s where startups should start.</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/startup-technical-guide-ai-agents-header2.max-600x600.png</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/startup-guide-ai-agents-production-ready-ai-how-to/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Iliana Quinonez</name><title>Director, Customer Engineering for Startups</title><department></department><company>Google Cloud</company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Ahsif Sheikh</name><title>AI Customer Engineer, Google Cloud</title><department></department><company></company></author></item><item><title>150 of the latest AI use cases from leading startups and digital natives</title><link>https://cloud.google.com/blog/topics/startups/150-ai-use-cases-leading-startups-and-digital-natives/</link><description>&lt;div class="block-paragraph"&gt;&lt;p data-block-key="433dv"&gt;We recently hosted &lt;a href="https://www.googlecloudevents.com/AI-builders-forum" target="_blank"&gt;our first-ever AI Builders Forum&lt;/a&gt;, where we gathered with hundreds of the top founders, VCs, advisors, researchers, and teams powering the startups who are building the future with AI. And now, this week, many of us are together again in San Francisco for Tech Week.&lt;/p&gt;&lt;p data-block-key="cuott"&gt;A big reason for us to gather with our peers and the next generation of groundbreaking companies is that at Google Cloud, we’ve always worked to provide companies with the very same &lt;a href="https://cloud.google.com/use-cases/generative-ai"&gt;tools&lt;/a&gt; and &lt;a href="https://cloud.google.com/solutions/ai-hypercomputer"&gt;infrastructure&lt;/a&gt; that power Google’s own services and drive our continued growth. In recent years, we have been able to take that to an entirely new level, making our leading &lt;a href="https://cloud.google.com/ai/generative-ai?e=48754805&amp;amp;hl=en"&gt;generative AI technology&lt;/a&gt; available to even the youngest startups.&lt;/p&gt;&lt;p data-block-key="5qq1i"&gt;During the AI Builders Forum, we &lt;a href="https://cloud.google.com/blog/topics/startups/differentiated-ai-tech-stack-drives-startup-innovation-google-builders-forum/"&gt;showcased the work of dozens of startups&lt;/a&gt; who have taken that technology in new and exciting directions. There’s so many more hard at work with Google Cloud that we wanted to highlight as many as we could. Here, we’ve gathered 150 to be exact, breaking them out by the sectors and specialties in which they’re creating exciting new offerings that are changing the way we work, create, collaborate, and cure.&lt;/p&gt;&lt;p data-block-key="3se93"&gt;For those looking to join their ranks, we encourage you to join our &lt;a href="https://cloud.google.com/startup/apply?utm_source=cloud_sfdc&amp;amp;utm_medium=et&amp;amp;utm_campaign=FY21-Q1-global-demandgen-website-cs-startup_program_mc&amp;amp;utm_content=futureofai&amp;amp;utm_term=-&amp;amp;hl=en"&gt;Google for Startups Cloud program&lt;/a&gt;, with access to valuable credits and advice from Google experts and experienced VCs. And when it comes to the especially hot segment of AI agents, we’ve just introduced our &lt;a href="https://cloud.google.com/resources/content/building-ai-agents?utm_source=google_start_up&amp;amp;utm_medium=et&amp;amp;utm_campaign=FY25-Q3-GLOBAL-SMB34129-website-dl-ai-agent-report-51052&amp;amp;utm_content=builders_forum_blog"&gt;&lt;i&gt;Startup Technical Guide: AI Agents&lt;/i&gt;&lt;/a&gt;. It’s an in-depth collection of best practices and step-by-step guidance for building and scaling agentic AI.&lt;/p&gt;&lt;p data-block-key="9o9h1"&gt;We hope this list serves as inspiration for your own work — and that you’ll find yourself being recognized soon enough, too. All it takes is the right AI, the right partners, a good team, and a great idea. &lt;/p&gt;&lt;p data-block-key="bqhou"&gt;And if you're looking for even more inspiration, check out &lt;a href="https://cloud.google.com/transform/101-real-world-generative-ai-use-cases-from-industry-leaders/"&gt;our freshly updated list of 1,001 AI use cases&lt;/a&gt; (including these ones) from across industries and around the globe.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/1_150-startup-ai-use-cases-ai-coding-dev.max-1000x1000.png"
        
          alt="1_150-startup-ai-use-cases-ai-coding-dev"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="433dv"&gt;&lt;a href="http://arize.com/" target="_blank"&gt;Arize AI&lt;/a&gt;, an AI agent and engineering platform, partners with Google Cloud to help organizations successfully develop, evaluate, and observe their generative AI applications. The Arize AX platform seamlessly integrates with Vertex AI models and runs on Google Kubernetes Engine (GKE), which allows a very lean operations team to easily scale services and provide deep visibility into every layer of AI systems.&lt;/li&gt;&lt;li data-block-key="8n6cd"&gt;&lt;a href="https://augmentcode.io/" target="_blank"&gt;Augment Code&lt;/a&gt;, an AI coding assistant, integrated Anthropic’s Claude 3.5 Sonnet via Vertex AI to power its codebase chat feature. This delivered an instant improvement to chat performance after quick implementation, enhancing security and allowing customers to build and troubleshoot code faster.&lt;/li&gt;&lt;li data-block-key="9levm"&gt;&lt;a href="https://aviator.co/" target="_blank"&gt;Aviator,&lt;/a&gt; an engineering productivity platform, uses Google Kubernetes Engine, Vertex AI, and Gemini to scale its engineering productivity platform to thousands of users while accelerating the development of new generative AI features.&lt;/li&gt;&lt;li data-block-key="42uco"&gt;&lt;a href="http://cursor.com/" target="_blank"&gt;Cursor&lt;/a&gt; is an AI-powered code editor that integrates advanced AI features like autonomous agents and codebase-aware chat. It aims to create a highly effective human-AI programmer by automating tasks, understanding entire codebases, and accelerating development velocity, using models like Gemini and Anthropic's Claude on Google Cloud's Vertex AI.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Get started&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb86ddac790&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get in touch.&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://cloud.google.com/contact/form?hl=nl&amp;#x27;), (&amp;#x27;image&amp;#x27;, &amp;lt;GAEImage: Startup Program&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="433dv"&gt;&lt;a href="https://deepsource.io/" target="_blank"&gt;DeepSource&lt;/a&gt;, a platform for code quality and security, leverages Gemini and Google Kubernetes Engine (GKE) to help developers automatically analyze and remediate code. The platform uses Gemini-powered AI agents for its Autofix™ remediation engine, which increases the accuracy of its static analysis and provides automated fixes. Running on GKE, DeepSource can automatically scale to process tens of millions of lines of code per day, reducing operational costs and accelerating time to market for over 6,000 companies.&lt;/li&gt;&lt;li data-block-key="d945t"&gt;&lt;a href="http://factory.ai/" target="_blank"&gt;Factory&lt;/a&gt; AI, a platform for agent-driven software development, accelerates engineering by unifying context from sources like GitHub and Jira to delegate tasks like feature development and migrations. It uses Gemini 2.5 Flash for data ingestion and Gemini 2.5 Pro for advanced code/document generation.&lt;/li&gt;&lt;li data-block-key="b486f"&gt;&lt;a href="https://www.fireworks.ai/" target="_blank"&gt;Fireworks AI&lt;/a&gt;, a generative AI platform, uses Google Kubernetes Engine and Compute Engine to run its fast and efficient inference engine. This enables the company to process over 140 billion tokens daily, offering customers high uptime and throughput with lower latency and costs.&lt;/li&gt;&lt;li data-block-key="6266k"&gt;&lt;a href="http://lovable.dev/" target="_blank"&gt;Lovable&lt;/a&gt;, an AI software engineer, leverages Google Cloud's Vertex AI to deploy and unify its core language models, including Gemini and Anthropic's models. This unique orchestration enables users to create complete, full-stack web applications from plain English descriptions, effectively cutting the time required for prototype development from weeks to minutes and app development from months to hours.&lt;/li&gt;&lt;li data-block-key="fi8ne"&gt;&lt;a href="https://naologic.com/" target="_blank"&gt;Naologic,&lt;/a&gt; an AI application platform, uses Gemini APIs, Google Kubernetes Engine , and MongoDB Atlas on Google Cloud to build apps on top of legacy ERPs. The solution delivers fast query responses regardless of complexity, enabling powerful, natural-language chat and scaling for complex AI workloads like RAG and image search.&lt;/li&gt;&lt;li data-block-key="anc5s"&gt;&lt;a href="https://www.qodo.ai/" target="_blank"&gt;Qodo&lt;/a&gt; addresses critical code quality concerns with an agentic platform that works within existing developer workflows. Qodo integrates into Vertex AI Model Garden and provides automated pull request reviews at no cost to open-source projects.&lt;/li&gt;&lt;li data-block-key="5pcre"&gt;&lt;a href="http://resolve.ai/" target="_blank"&gt;Resolve AI&lt;/a&gt;, an always-on AI SRE, autonomously investigates incidents and helps run production systems using code, infrastructure, and observability data. With the intelligence and performance of Gemini on Vertex AI, Resolve AI improves MTTR, reliability, and engineering velocity for its customers.&lt;/li&gt;&lt;li data-block-key="foel0"&gt;&lt;a href="http://sieveapp.ai/" target="_blank"&gt;Sieve&lt;/a&gt;, an AI research lab focused on video data, builds multimodal AI systems to automate dataset creation, improve data quality, and provide relevant metadata that powers frontier model training. Sieve uses Vertex AI for large-scale video processing, content moderation, and indexing, including tasks like text recognition, captioning, and enrichment.&lt;/li&gt;&lt;li data-block-key="fp50a"&gt;&lt;a href="https://www.systalyze.com/" target="_blank"&gt;Systalyze,&lt;/a&gt; an enterprise AI deployment platform, reduces the cost and complexity of AI. Through a partnership with Google Cloud, it reduces deployment costs by up to 90% and accelerates fine-tuning, inference, and agentic AI by 2–15x, while keeping data fully private and secure.&lt;/li&gt;&lt;li data-block-key="9c4a7"&gt;&lt;a href="https://turbopuffer.com/" target="_blank"&gt;Turbopuffer,&lt;/a&gt; a startup offering serverless vector and full-text search, uses Google Cloud Storage, Google Kubernetes Engine, and Google Compute Engine to help AI businesses overcome the high costs and complexity of traditional database architectures. ​Its solution has reduced AI database cost by up to 90% for customers, manages over 1 trillion documents, and handles more than 10 million writes and 10,000 queries every second.&lt;/li&gt;&lt;li data-block-key="bvccl"&gt;&lt;a href="http://vercel.com/" target="_blank"&gt;Vercel&lt;/a&gt; democratizes access to AI models through its AI SDK and AI Gateway, making it seamless for developers to integrate agentic capabilities into their applications. By providing unified access to leading models like Google's Gemini through a single interface, Vercel has enabled teams to build AI-powered features faster and more reliably.&lt;/li&gt;&lt;li data-block-key="bi1a"&gt;&lt;a href="https://vessl.ai/" target="_blank"&gt;VESSL AI&lt;/a&gt;, an MLOps platform, uses Google Cloud to accelerate AI model development and reduce costs for its users. By leveraging Google Kubernetes Engine, VESSL AI can dynamically scale ML workloads, helping users create AI models up to four times faster and realize up to 80% savings on cloud expenditures. The platform's integration with Vertex AI provides users with access to powerful models and AutoML solutions, further streamlining the MLOps lifecycle.&lt;/li&gt;&lt;li data-block-key="e78hp"&gt;&lt;a href="http://windsurf.com/" target="_blank"&gt;Windsurf&lt;/a&gt; provides an AI-powered code completion and generation tool for developers. Their AI integrates directly into IDEs, offering suggestions, generating code, and refactoring existing code. Windsurf uses Gemini 2.5 Pro to power its coding assistance IDE, and to support integrations with Cognition’s Devin AI.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/2-150-startup-ai-use-cases-healthcare-life.max-1000x1000.png"
        
          alt="2-150-startup-ai-use-cases-healthcare-life-sciences"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="433dv"&gt;&lt;a href="http://atroposhealth.com/" target="_blank"&gt;Atropos Health,&lt;/a&gt; a healthcare data analytics company, optimized its GENEVA OS to work with Google Cloud’s Healthcare Data Engine (HDE) and BigQuery. This enables customers to efficiently and securely convert data into valuable insights and evidence.&lt;/li&gt;&lt;li data-block-key="ek7a2"&gt;&lt;a href="http://cerebra.kz/" target="_blank"&gt;Cerebra AI&lt;/a&gt; develops AI software for analyzing non-contrast CT (NCCT) scans, with a focus on early stroke and cancer detection. It fine-tunes MedGemma on NCCT images and leverages Gemini's few-shot generalization capabilities to rapidly adapt the model for various diagnostic tasks.&lt;/li&gt;&lt;li data-block-key="45rau"&gt;&lt;a href="https://www.citiustech.com/" target="_blank"&gt;CitiusTech,&lt;/a&gt; a global Healthcare technology services firm, uses Google Cloud to improve patient experience, reduce administrative burden on clinical staff, and save costs for healthcare systems. The company has developed an AI search solution using Vertex AI to efficiently connect patients with the right specialists and automate critical workflows.&lt;/li&gt;&lt;li data-block-key="1e51h"&gt;&lt;a href="https://www.congruencetx.com/" target="_blank"&gt;Congruence Therapeutics&lt;/a&gt;, a computationally driven biotechnology company, uses its proprietary platform, Revenir, to build a pipeline of small molecule correctors. The platform identifies novel allosteric and cryptic pockets in proteins to rescue aberrant function.&lt;/li&gt;&lt;li data-block-key="667rm"&gt;&lt;a href="http://co.vet/" target="_blank"&gt;CoVet&lt;/a&gt; is an AI assistant built by veterinary professionals, for veterinary professionals, that uses Gemini, Cloud Functions, and other solutions to help veterinary teams automate administrative work, save hours every day, and refocus on what matters most: exceptional patient care.&lt;/li&gt;&lt;li data-block-key="3t2oq"&gt;&lt;a href="https://www.digitaldiagnostics.com/" target="_blank"&gt;Digital Diagnostics,&lt;/a&gt; a healthcare diagnostics company, uses Google Cloud’s secure infrastructure to enhance the reach of LumineticsCore, its AI-powered diagnostic tool for diabetic retinopathy. This approach protects sensitive health data and ensures patient privacy and regulatory compliance.&lt;/li&gt;&lt;li data-block-key="3c8bq"&gt;&lt;a href="https://dnastack.com/" target="_blank"&gt;DNAstack,&lt;/a&gt; a leading genomics data management and analysis platform, leverages Google Cloud’s scalable infrastructure and advanced analytics tools to accelerate research and discovery in personalized medicine.&lt;/li&gt;&lt;li data-block-key="4l18i"&gt;&lt;a href="https://evogene.com/" target="_blank"&gt;Evogene&lt;/a&gt; uses Google Cloud and Vertex AI to replace life sciences' costly "spray and pray" molecular discovery — testing millions of molecules hoping to stumble into effective ones — with their computational platform. They now process 40 billion molecules versus previous millions, while using Vertex AI to develop a cutting-edge small-molecule foundation model that dramatically accelerates drug discovery timelines.&lt;/li&gt;&lt;li data-block-key="11cbu"&gt;&lt;a href="http://genbio.ai/" target="_blank"&gt;GenBio AI,&lt;/a&gt; a computational biology company, uses Google Cloud to power six specialized AI models in developing AI-driven digital organism simulators. These models simulate biological programming to address critical challenges in medicine and biology.&lt;/li&gt;&lt;li data-block-key="763v0"&gt;&lt;a href="https://www.immunai.com/" target="_blank"&gt;Immunai&lt;/a&gt; tackles drug development's decade-long timeline with AMICA, the world's largest immune-focused single-cell database containing hundreds of millions of cells. Using Google Cloud GPU clusters, they train models that transform complex immune mechanisms into actionable recommendations for 30+ biopharmaceutical partners.&lt;/li&gt;&lt;li data-block-key="1d6a8"&gt;&lt;a href="http://infinitus.ai/" target="_blank"&gt;Infinitus&lt;/a&gt;, one of the most trusted agentic healthcare communications platforms, automates clinical and administrative conversations at scale. Our AI agents powered by Gemini's multimodal capabilities have completed over 5x more conversations than any other solution with payors, patients, and providers to drive revenue and improve health outcomes&lt;/li&gt;&lt;li data-block-key="57ov8"&gt;&lt;a href="https://isonohealth.com/" target="_blank"&gt;iSono Health,&lt;/a&gt; a medical imaging company, developed a Virtual Sonographer, an intelligent, automated 3D Ultrasound platform powered by Google Cloud AI. The platform brings breast imaging directly to the point of care, providing fast, accessible, and repeatable imaging.&lt;/li&gt;&lt;li data-block-key="emvb1"&gt;&lt;a href="https://www.menten.ai/" target="_blank"&gt;Menten AI&lt;/a&gt;, a biotechnology company, uses Google Cloud’s high-performance compute and machine learning capabilities to accelerate the development of peptide therapeutics. This allows the company to rapidly design and optimize novel drug candidates.&lt;/li&gt;&lt;li data-block-key="12u3p"&gt;&lt;a href="http://moonwalk.bio/" target="_blank"&gt;Moonwalk Bio&lt;/a&gt;, a preclinical-stage biotechnology company, leverages epigenetic biology and AI to pioneer new medicines for obesity and cardiometabolic disease. Their platform determines the causal relationships between genes and disease pathways for therapeutic targeting.&lt;/li&gt;&lt;li data-block-key="7pab7"&gt;&lt;a href="http://pearhealthlabs.com/" target="_blank"&gt;Pear Health Labs&lt;/a&gt;, a health and fitness AI platform, develops personalized interventions to prevent chronic conditions. It powers recommendations, content search, and dynamic audio coaching. It uses Vertex AI Voice Generation, Vector Search in BigQuery, and the engineering team leverages Gemini Code Assist.&lt;/li&gt;&lt;li data-block-key="6b3m0"&gt;&lt;a href="https://www.sami.com.br/" target="_blank"&gt;Sami,&lt;/a&gt; a tech-enabled health insurance company in Brazil, built its entire infrastructure on Google Cloud from day one. The company uses AI tools such as Gemini, Notebook LM, and Vertex AI to transform healthcare delivery and accelerate critical processes like prescription validation to seconds. Sami enables information flow across its partners, delivering high-quality, accessible healthcare at scale.&lt;/li&gt;&lt;li data-block-key="6eg1s"&gt;&lt;a href="http://sandboxaq.com/" target="_blank"&gt;SandboxAQ&lt;/a&gt; is expanding its usage of Google Cloud and running a new AI drug discovery simulation platform on Google Cloud.&lt;/li&gt;&lt;li data-block-key="bdbp1"&gt;&lt;a href="http://sully.ai/" target="_blank"&gt;Sully.ai&lt;/a&gt;, a healthcare AI company, has built an app store for AI agents designed specifically for healthcare professionals. The platform provides support to clinicians on administrative tasks, so they can focus on patients.&lt;/li&gt;&lt;li data-block-key="6m4o9"&gt;&lt;a href="http://tali.ai/" target="_blank"&gt;Tali.ai&lt;/a&gt; is the leading medical AI scribe platform, designed to reduce the administrative burden of clinicians. Integrated with multiple EMRs across the U.S. and Canada, it leverages Google’s Vertex and Gemini models to automate clinical note-taking during patient encounters and extract key insights.&lt;/li&gt;&lt;li data-block-key="7qr1h"&gt;&lt;a href="https://www.thinkresearch.com/" target="_blank"&gt;Think Research&lt;/a&gt;, a provider of knowledge-based digital health software solutions, uses Google Cloud’s scalable infrastructure and analytics tools to power its platform. This enables the company to deliver more efficient patient care and improve health outcomes.&lt;/li&gt;&lt;li data-block-key="cldnr"&gt;&lt;a href="https://ubiehealth.com/company" target="_blank"&gt;Ubie,&lt;/a&gt; a healthcare-focused startup founded in Japan, is using Gemini models via Google Cloud to power its physician assistance tool.&lt;/li&gt;&lt;li data-block-key="fvm3o"&gt;&lt;a href="https://ufonia.com/" target="_blank"&gt;Ufonia&lt;/a&gt;, a clinical AI company, helps physicians deliver care by using AI to automate clinical consultations with patients. Google Cloud’s full AI stack, including infrastructure, models on Vertex AI Model Garden, BigQuery, and Google Kubernetes Engine, powers its platform by using AI to automate clinical consultations with patients. It is using Google Cloud’s full AI stack to power its platform, including infrastructure, models on Vertex AI Model Garden, BigQuery, and GKE.&lt;/li&gt;&lt;li data-block-key="c812v"&gt;&lt;a href="https://www.viascientific.com/" target="_blank"&gt;Via Scientific,&lt;/a&gt; a bioinformatics company, partners with Google Cloud to deliver Via Foundry, an enterprise-grade platform that uses Gemini and Vertex AI to make the drug discovery process more efficient. The platform transforms complex biological data into actionable insights that can accelerate discoveries.&lt;/li&gt;&lt;li data-block-key="c032a"&gt;&lt;a href="https://virgosurgical.com/" target="_blank"&gt;Virgo Surgical,&lt;/a&gt; a medical video solutions provider, uses Google Cloud Storage and Google Kubernetes Engine to host and process over 1.75 petabytes of video data. This data has been used to create EndoDINO, an AI foundation model for endoscopy that achieves high performance in medical imaging applications.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/3-150-startup-ai-use-cases-agentic-ai.max-1000x1000.png"
        
          alt="3-150-startup-ai-use-cases-agentic-ai"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="qho1m"&gt;&lt;a href="http://gobii.ai/" target="_blank"&gt;Gobii&lt;/a&gt; provides AI agents that automate complex web tasks like forms and workflows directly in the browser. To power these intelligent agents, Gobii leverages Google Cloud, utilizing Vertex AI and our scalable GKE infrastructure.&lt;/li&gt;&lt;li data-block-key="896cc"&gt;&lt;a href="https://www.hebbia.ai/" target="_blank"&gt;Hebbia&lt;/a&gt;, a legal and financial research company, integrated Gemini models into its Matrix platform to help organizations build AI agents capable of working across all of their data.&lt;/li&gt;&lt;li data-block-key="bce98"&gt;&lt;a href="https://livex.ai/" target="_blank"&gt;LiveX&lt;/a&gt;, customer service AI agents, uses Google Kubernetes Engine Autopilot and NVIDIA GPUs to power its platform. These technologies reduced total cost of ownership by 50% and operational costs by 66% while supporting an 85% reduction in customer support costs for one of its clients.&lt;/li&gt;&lt;li data-block-key="9asb7"&gt;&lt;a href="http://parallel.ai/" target="_blank"&gt;Parallel&lt;/a&gt; is using Gemini models to power new products including an API for AI agents to perform high-value tasks using web data.&lt;/li&gt;&lt;li data-block-key="8f8v3"&gt;&lt;a href="http://qualia-labs.com/" target="_blank"&gt;Qualia Clear&lt;/a&gt; is an agentic system that transforms real estate closings by automating manual title &amp;amp; escrow workflows. It uses tool calling, Gemini 2.5 Flash &amp;amp; Pro, and Google Agent Development Kit to process emails and documents and simplify reporting, improving efficiency and customer service.&lt;/li&gt;&lt;li data-block-key="al525"&gt;&lt;a href="http://replicant.com/" target="_blank"&gt;Replicant&lt;/a&gt; automates customer conversations for enterprise brands using voice and chat AI agents that replicate the expertise of your very best agents. Gemini helps Replicant deliver consistent service 24/7 that deploys quickly, scales effortlessly and continuously improves to boost ROI and CX.&lt;/li&gt;&lt;li data-block-key="97b5f"&gt;&lt;a href="http://skyvern.com/" target="_blank"&gt;Skyvern&lt;/a&gt; helps companies automate browser-based workflows with AI. Skyvern uses Large Language Models (LLMs) like Gemini 2.5 Pro and computer vision, to interact with websites, enabling it to automate tasks like filling out forms, procuring materials, and downloading invoices. Skyvern's AI agents can adapt to website changes, making automation more robust.&lt;/li&gt;&lt;li data-block-key="259qg"&gt;&lt;a href="https://torq.io/" target="_blank"&gt;Torq&lt;/a&gt; uses agentic AI to automate the entire security operations lifecycle through Socrates, an AI SOC analyst that coordinates specialized agents. Running on Google Cloud's infrastructure, teams achieve 90% automation of tier-1 analyst tasks auto-remediated without human involvement, 95% decrease in manual tasks and10x faster response times.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/4-150-startup-ai-use-cases-business-profes.max-1000x1000.png"
        
          alt="4-150-startup-ai-use-cases-business-professional-services"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="qho1m"&gt;&lt;a href="https://www.altumatim.com/" target="_blank"&gt;Altumatim&lt;/a&gt;, a legal tech startup, uses a platform powered by Gemini on Vertex AI to analyze millions of documents for eDiscovery. This accelerates the process from months to hours, improves accuracy to over 90%, and enables attorneys to focus on building compelling legal arguments.&lt;/li&gt;&lt;li data-block-key="8olgk"&gt;&lt;a href="http://anara.so/" target="_blank"&gt;Anara&lt;/a&gt;, a generative AI research assistant, helps users find and understand scientific documents with verifiable AI summaries and insights. It uses Google Cloud's scalable infrastructure, AI Studio, and Cloud Functions to power its models and data processing for a global user base.&lt;/li&gt;&lt;li data-block-key="7f9cn"&gt;&lt;a href="http://clavata.ai/" target="_blank"&gt;Clavata.ai&lt;/a&gt; delivers an integrated AI governance and safety platform with intelligent, multi-modal, real-time evaluation engine powered by Gemini. Our tools enable proactive policy enforcement, dynamic debugging, iteration, observability, and problem prevention.&lt;/li&gt;&lt;li data-block-key="e8t4a"&gt;&lt;a href="https://www.harvey.ai/" target="_blank"&gt;Harvey&lt;/a&gt;, a legal AI company, uses Gemini 2.5 Pro on Vertex AI to automate complex document reviews, a major pain point in the legal industry. The platform provides domain-specific AI that can reason over hundreds of pages of materials, enabling legal professionals to maximize efficiency and focus on strategic work.&lt;/li&gt;&lt;li data-block-key="1f0eh"&gt;&lt;a href="https://www.inspira.ai/" target="_blank"&gt;Inspira,&lt;/a&gt; a legal tech company, tackles the time-intensive challenge of legal document analysis by providing lawyers with an AI-powered solution built on Google Cloud. Leveraging Gemini, Vertex AI, and BigQuery, Inspira's platform automates legal document search, analysis, and drafting to reduce workflow times by 80%, allowing lawyers to find answers and relevant decisions in minutes or hours instead of weeks.&lt;/li&gt;&lt;li data-block-key="7s9kr"&gt;&lt;a href="http://instalily.ai/" target="_blank"&gt;Instalily&lt;/a&gt; uses Google Cloud with Gemini 2.5 and Vertex AI to power InstaWorkers that transform sales, service, and operations. At a leading field service provider, InstaWorkers cut the technician’s diagnosis time from 15 minutes to under 10 seconds, lowered serving costs by 98 percent, and drove a 99 percent improvement in end-to-end workflow speed.&lt;/li&gt;&lt;li data-block-key="7hct6"&gt;&lt;a href="http://markups.ai/" target="_blank"&gt;Markups.ai&lt;/a&gt;, an AI contract negotiation agent, turns a days-long human legal review into a minute(s) automated process. By simply emailing a contract, clients receive customized revisions and analysis almost instantly. Gemini 2.5 Pro enabled us to go from handling only first revisions of NDAs, to any revision of any contract (MSAs, DPAs, etc.).&lt;/li&gt;&lt;li data-block-key="65eng"&gt;&lt;a href="http://monday.com/" target="_blank"&gt;monday.com&lt;/a&gt;, a work management platform trusted by more than 245,000 customers worldwide, leverages Veo to produce training videos, social content, and internal communications in a fraction of the time — empowering all employees, not just designers, to move faster and focus on impact.&lt;/li&gt;&lt;li data-block-key="u9le"&gt;&lt;a href="https://www.nobroker.in/" target="_blank"&gt;NoBroker&lt;/a&gt;, a real estate platform, uses its ConvoZen AI, powered by Gemini and L4 GPUs, to automate customer support across multiple Indian languages. The platform processes 10,000 hours of recordings daily, with AI agents projected to handle 25-40% of future calls and save customers $1 billion annually.&lt;/li&gt;&lt;li data-block-key="33chd"&gt;&lt;a href="http://obrajobs.com/" target="_blank"&gt;ObraJobs&lt;/a&gt;, a job platform, connects candidates with relevant opportunities, streamline the hiring process, and deliver personalized recommendations for both job seekers and employers. Obra uses Vertex AI to power candidate matching and personalized job recommendations, supported by Cloud Storage, Cloud Run, Cloud Scheduler, Cloud Tasks, and Firestore.&lt;/li&gt;&lt;li data-block-key="dik3u"&gt;&lt;a href="http://provenbase.com/" target="_blank"&gt;Provenbase&lt;/a&gt; has built its talent recruitment tool for businesses on Google Cloud and is now powering its transformative Deep Search for talent feature using Google Cloud AI.&lt;/li&gt;&lt;li data-block-key="9ce8e"&gt;&lt;a href="http://story.co/" target="_blank"&gt;Story,&lt;/a&gt; an intellectual property startup that powers licensing and monetization services, is working with Google Cloud’s web3 services and infrastructure to bring new capabilities to developers on its platform.&lt;/li&gt;&lt;li data-block-key="3mnu2"&gt;&lt;a href="http://upwork.com/" target="_blank"&gt;Upwork&lt;/a&gt;, the world's human and AI-powered work marketplace, connects businesses with independent professionals. By leveraging Vertex AI Text to Speech API, Upwork delivers faster, more accurate talent matching and hiring efficiency for clients and freelancers.&lt;/li&gt;&lt;li data-block-key="e9rdk"&gt;&lt;a href="https://wotter.ai/" target="_blank"&gt;Wotter,&lt;/a&gt; an employee engagement platform, uses a Gemini-powered smart assistant and Google Cloud's robust AI capability to provide real-time insights into employee sentiment. It accurately predicts flight risks and offers actionable "Wott-if" scenarios, enabling leaders to build a data-driven people strategy.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/5-150-startup-ai-use-cases-manufacturing-i.max-1000x1000.png"
        
          alt="5-150-startup-ai-use-cases-manufacturing-industrial"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="qho1m"&gt;&lt;a href="https://www.bynry.com/" target="_blank"&gt;Bynry&lt;/a&gt;'s SMART360 leverages Google Cloud’s robust infrastructure to empower small and mid-sized utilities to enhance operational efficiency and customer satisfaction.&lt;/li&gt;&lt;li data-block-key="sldu"&gt;&lt;a href="https://www.kraftblock.com/" target="_blank"&gt;Kraftblock,&lt;/a&gt; a green tech company, uses Google Cloud Compute Engine to run simulations for its high-temperature thermal energy storage systems, helping energy-intensive industries like steel and ceramics decarbonize. This support helps the green tech startup optimize its solution and scale faster.&lt;/li&gt;&lt;li data-block-key="413rg"&gt;&lt;a href="https://labellerr.com/" target="_blank"&gt;Labellerr,&lt;/a&gt; a data labeling engine, uses Vertex AI and Cloud Run to automate annotation and smart QA to help ML teams process millions of images and thousands of hours of videos in just a few weeks.&lt;/li&gt;&lt;li data-block-key="756a6"&gt;&lt;a href="http://physicalintelligence.company/" target="_blank"&gt;Physical Intelligence&lt;/a&gt; recently partnered with Google Cloud to support model development, using our secure and scalable AI infrastructure.&lt;/li&gt;&lt;li data-block-key="3srg0"&gt;&lt;a href="https://www.tulanahq.com/" target="_blank"&gt;tulanā,&lt;/a&gt; an intelligent decision support provider, has a highly customizable platform that uses forecasting, optimization, simulation, and AI to help enterprise clients make better decisions across supply chains and physical infrastructure. tulanā is using Cloud Run to horizontally scale its optimization workloads, Gemini for intelligent ETL processes, and Cloud SQL and Big Query to store customer data.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/6-150-startup-ai-use-cases-finaicial-servi.max-1000x1000.png"
        
          alt="6-150-startup-ai-use-cases-finaicial-services"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="qho1m"&gt;&lt;a href="https://www.albo.mx/" target="_blank"&gt;Albo&lt;/a&gt;, a Mexican neobank, uses Gemini models to power its "Albot" AI chatbot that provides 24/7 financial advice, customer onboarding, and support to millions of first-time banking users. The platform advances financial inclusion while streamlining regulatory compliance and improving operational efficiency.&lt;/li&gt;&lt;li data-block-key="a5pq6"&gt;&lt;a href="https://www.thisisbud.com/en-us" target="_blank"&gt;Bud Financial&lt;/a&gt;, a data intelligence provider focused on banking clients, leverages DataStax Astra DB on Google Cloud with Gemini. The platform enables ultra-fast processing of complex financial data, helping clients reduce fraud by over 90% and shortening the time required to access critical data analytics from weeks to minutes.&lt;/li&gt;&lt;li data-block-key="dsrek"&gt;&lt;a href="https://www.causal.app/" target="_blank"&gt;Causal&lt;/a&gt;, a financial planning platform, uses Cloud SQL and Gemini models to power its data foundation and accelerate innovation. By offloading database management, the company built an AI-powered wizard that helps users connect data, analyze patterns, and generate financial models in just five minutes.&lt;/li&gt;&lt;li data-block-key="9o1al"&gt;&lt;a href="http://cerc.inf.br/" target="_blank"&gt;CERC,&lt;/a&gt; a financial infrastructure company, manages more than 500 million daily transactions using Databricks, BigQuery, and Gemini. This increased processing capacity by 10x without adding to the workforce, allowing the company to process millions in revenue forecasts in just two minutes and accelerate analytics for customers.&lt;/li&gt;&lt;li data-block-key="a75e7"&gt;&lt;a href="https://www.datacurve.io/" target="_blank"&gt;DataCurve&lt;/a&gt;, a frontier coding data analytics provider, addresses complex data challenges by combining Web3 and generative AI on Google Cloud. Its platform uses AI agents for deep data analysis and Web3 for data authenticity, delivering insights that help customers take action and improve engagement.&lt;/li&gt;&lt;li data-block-key="cjl4j"&gt;&lt;a href="https://www.etoro.com/en-us/" target="_blank"&gt;eToro&lt;/a&gt;, a global trading and investing platform, has pioneered a groundbreaking approach to marketing by using Veo to create advertising campaigns. This enables eToro to rapidly generate professional-quality, culturally specific video content across the global markets it serves, which would traditionally require extensive production timelines and significant budgets.&lt;/li&gt;&lt;li data-block-key="aad85"&gt;&lt;a href="http://fiscal.ai/" target="_blank"&gt;Fiscal.ai&lt;/a&gt; is reinventing financial data infrastructure. Its AI-native platform transforms unstructured public filings into clean, standardized data in minutes, replacing the slow, error-prone legacy of manual aggregation and delivering the mission-critical insights that today's top investors demand.&lt;/li&gt;&lt;li data-block-key="j3bg"&gt;&lt;a href="https://www.rogo.ai/" target="_blank"&gt;Rogo,&lt;/a&gt; a generative AI platform built for the financial industry, uses Google Cloud solutions like Dataflow, Spanner, and Vertex AI to automate complex research and analysis for the world's leading investment banks and private equity firms. Gemini 2.5 Flash enabled the platform to cut AI modeling time from months to hours and reduce hallucination rates from 34.1% to 3.9%.&lt;/li&gt;&lt;li data-block-key="4ovtr"&gt;&lt;a href="https://www.stax.ai/" target="_blank"&gt;Stax AI,&lt;/a&gt; a retirement administration platform, uses Google Cloud's generative AI and MongoDB to automate data extraction from complex financial documents. The solution processes thousands of brokerage statements in minutes, not hours, helping administrators respond to client inquiries and meet compliance deadlines in a fraction of the time.&lt;/li&gt;&lt;li data-block-key="3ncbe"&gt;&lt;a href="https://www.wagestream.com/" target="_blank"&gt;Stream,&lt;/a&gt; offers financial tools to employers and employees and is using Gemini models to handle more than 80% of its internal customer inquiries, including questions about pay dates, balances, and more.&lt;/li&gt;&lt;li data-block-key="8m5f9"&gt;&lt;a href="https://www.wealth-api.com/" target="_blank"&gt;WealthAPI,&lt;/a&gt; a German fintech company, uses DataStax Astra DB on Google Cloud with Gemini to deliver real-time financial insights to millions of users. The platform's scalability allows it to analyze hundreds of thousands of transactions per second and has reduced response times by 90% for its customers.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/7-150-startup-ai-use-cases-design-creativi.max-1000x1000.png"
        
          alt="7-150-startup-ai-use-cases-design-creativity-media-gen"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="kcvvv"&gt;&lt;a href="http://afooga.com/" target="_blank"&gt;Afooga&lt;/a&gt;, an AI-powered content experimentation factory, enables businesses to generate, test, and distribute content at massive scale from a single hypothesis, automatically optimizing across TikTok, Meta, YouTube, and more. Afooga leverages Vertex AI and Veo for generative video capabilities, and is architected entirely on Google Cloud.&lt;/li&gt;&lt;li data-block-key="41avt"&gt;&lt;a href="https://www.alson.ai/" target="_blank"&gt;Alson AI,&lt;/a&gt; a creative platform provider, uses Veo and Gemini to power its creativity platform that helps creators turn ideas into illustrated books and animations, reducing production time from months to minutes and costs from thousands of dollars to $25.&lt;/li&gt;&lt;li data-block-key="109h5"&gt;&lt;a href="http://getcartwheel.com/" target="_blank"&gt;Cartwheel,&lt;/a&gt; a generative animation platform, helps users tell stories faster and more creatively. Its tool uses Gemini Flash for character creation prompts, Imagen for reference-image creation for 3D character development, and Veo 3 for video-to-animation input control that makes output editable by artists.&lt;/li&gt;&lt;li data-block-key="1jnti"&gt;&lt;a href="https://www.comfy.org/" target="_blank"&gt;ComfyUI&lt;/a&gt;, an open-source engine for visual AI, helps creators prototype and automate media generation with pre-set models and more than 20,000 extensions. The platform integrates Gemini 2.5 and Veo 3 for multimodal creation and runs on Google Cloud infrastructure.&lt;/li&gt;&lt;li data-block-key="ftu69"&gt;&lt;a href="https://www.connected-stories.com/" target="_blank"&gt;Connected-Stories&lt;/a&gt;, an AI creative platform, uses Gemini and Imagen on Vertex AI to help brands overcome manual content personalization challenges. The platform's AI creative assistant analyzes briefs and turns them into sophisticated strategies, enabling brands to create personalized content at scale and optimize campaigns in real-time.&lt;/li&gt;&lt;li data-block-key="54qvt"&gt;&lt;a href="https://fal.ai/" target="_blank"&gt;fal,&lt;/a&gt; a generative media platform for developers, accelerates generative AI model inference to improve the speed with which content is generated. The fal team is working with Google Cloud to leverage its Veo 2 technology to help its users create videos with realistic motion and high-quality output.&lt;/li&gt;&lt;li data-block-key="eg5q4"&gt;&lt;a href="https://www.heygen.com/" target="_blank"&gt;HeyGen,&lt;/a&gt; an AI-powered video generation platform, makes creating, translating, and personalizing high-quality videos simple and accessible. HeyGen's core product leverages Gemini 2.5 Pro, Flash, and Flash-Lite to streamline content creation. With one prompt, HeyGen automates video planning, intelligently analyzes user-generated footage, and optimizes content through advanced visual and audio processing.&lt;/li&gt;&lt;li data-block-key="8h0b6"&gt;&lt;a href="http://higgsfield.ai/" target="_blank"&gt;Higgsfield.ai&lt;/a&gt;, a generative AI video startup, uses its foundational model on Google Cloud and Vertex AI to enable video creation, helping smaller companies create realistic videos faster and more cost-effectively compared to traditional methods.&lt;/li&gt;&lt;li data-block-key="9cf1r"&gt;&lt;a href="http://krea.ai/" target="_blank"&gt;Krea.ai&lt;/a&gt;, a creative suite of AI tools, offers real-time image/video generation and personalized model training for artists and marketers. It integrates with Google Cloud, including models as Veo3 and Nano Banana, to provide access to advanced models, enabling users to create high-quality ads, product photos, and game assets.&lt;/li&gt;&lt;li data-block-key="5rg82"&gt;&lt;a href="https://mosaic.so/" target="_blank"&gt;Mosaic&lt;/a&gt; lets you build and run multimodal video-editing AI agents. A canvas of creative tools becomes your building blocks, enabling simultaneous edits and many versions on autopilot—powered by Gemini 2.5 Pro’s video understanding and Google Cloud (Storage + Cloud Run) for scalable pipelines.&lt;/li&gt;&lt;li data-block-key="642h5"&gt;&lt;a href="http://nim.video/" target="_blank"&gt;Nim.video&lt;/a&gt; is an AI-first platform for instant short-form video generation from a single prompt. The multimodal platform uses top generative models, including Veo3 and Veo3 Fast, for text-to-video synthesis. It runs on Vertex AI, enabling scaled experiments and orchestration of services like speech recognition and TTS.&lt;/li&gt;&lt;li data-block-key="ar7kv"&gt;&lt;a href="http://openart.ai/" target="_blank"&gt;OpenArt&lt;/a&gt; empowers social media creators and SMBs to turn ideas into stunning videos in minutes - complete with motion, music, and a narrative arc in one click. Powered by Gemini image models and Google’s Veo3 video model, it makes creating viral posts and brand content fast and effortless.&lt;/li&gt;&lt;li data-block-key="53vfl"&gt;&lt;a href="https://www.photoroom.com/" target="_blank"&gt;Photoroom&lt;/a&gt;, provides generative AI photo-editing and design capabilities to consumers and businesses, uses Veo 2 and Imagen 3 to improve the quality of its offering and accelerate its development.&lt;/li&gt;&lt;li data-block-key="d7u9a"&gt;&lt;a href="http://prodia.com/" target="_blank"&gt;Prodia&lt;/a&gt; offers APIs to integrate generative AI into creative tools. Built on Google Cloud, Prodia relies on GPUs &amp;amp; DWS to serve the fastest text-to-image and instruct-to-edit models in the world, as verified by Artificial Analysis benchmarks. Prodia uses Veo 3 and Nano Banana to further power multimodal AI features.&lt;/li&gt;&lt;li data-block-key="c79lo"&gt;&lt;a href="http://clipmedia.ca/" target="_blank"&gt;Reclip&lt;/a&gt;, a "real" social media application, leverages Veo and Imagen to create short, engaging animated videos from real time audio clips, captured by their proprietary app. Consumers love sharing these precious, funny and real "Reclips" with their friends and family.&lt;/li&gt;&lt;li data-block-key="ci2v5"&gt;&lt;a href="http://scope3.com/" target="_blank"&gt;Scope3&lt;/a&gt; is enhancing its ad-tech platform with AI-powered features, using Gemini 2.5 Flash to offer features like real-time content classification, ensuring content is aligned with brand preference.&lt;/li&gt;&lt;li data-block-key="hfb8"&gt;&lt;a href="http://www.spot.ai/" target="_blank"&gt;Spot AI&lt;/a&gt;, a video AI agent builder, leverages Google Cloud PubSub to turn security cameras into intelligent agents to enhance safety, security, and operations without needing AI/ML teams.&lt;/li&gt;&lt;li data-block-key="6joac"&gt;&lt;a href="http://wondercraft.ai/" target="_blank"&gt;Wondercraft&lt;/a&gt;, an AI-powered content studio that helps users create engaging audio ads, podcasts and more, is leveraging Gemini models for some of its core functionalities and will soon release a Veo2 integration.&lt;/li&gt;&lt;li data-block-key="7dhl7"&gt;&lt;a href="https://writer.com/" target="_blank"&gt;Writer,&lt;/a&gt; an enterprise generative AI platform, builds and trains its 17-plus LLMs on Google Cloud using Google Kubernetes Engine and high-performance NVIDIA GPUs. This allows the company to scale efficiently and cost-effectively, delivering fast, low-latency answers for enterprise customers who demand accurate and on-brand AI-generated content.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/8-150-startup-ai-use-cases-marketing-media.max-1000x1000.png"
        
          alt="8-150-startup-ai-use-cases-marketing-media"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="kcvvv"&gt;&lt;a href="https://andesml.com/" target="_blank"&gt;AndesML,&lt;/a&gt; a retail media platform, helps large enterprises launch and monetize their own ad networks by showing the right ad to the right customer at the right time. Built on Vertex AI, BigQuery, and Gemini models, the AndesML platform has delivered a 30% performance lift in customer campaigns, accelerated production time by more than 30 days, and reduced operational costs.&lt;/li&gt;&lt;li data-block-key="2u8n2"&gt;&lt;a href="https://www.audiomob.com/" target="_blank"&gt;Audiomob&lt;/a&gt;, an in-game audio ad platform, replaced its legacy business intelligence system with BigQuery and Looker to gain real-time insights from its global data. This move enabled the company to handle billions of monthly transactions, contributing to triple-digit yearly revenue growth and significant savings in engineering time.&lt;/li&gt;&lt;li data-block-key="7m1q7"&gt;&lt;a href="https://hedra.ai/" target="_blank"&gt;Hedra&lt;/a&gt;, an end-to-end marketing creation platform, is designed to generate high-quality content at scale. Hedra Studio combines its proprietary multimodal models with other leading models like Veo and Imagen, enabling users to produce polished marketing content for any use case. Hedra’s Live Avatars use Gemini to deliver dynamic, real-time interactive video experiences.&lt;/li&gt;&lt;li data-block-key="8gich"&gt;&lt;a href="https://www.inworld.ai/" target="_blank"&gt;Inworld,&lt;/a&gt; an AI platform for builders of consumer applications, uses Google Cloud and Gemini to cost-effectively handle tens of millions of concurrent users with response times measured in milliseconds, meeting strict requirements for quality, cost control, and security.&lt;/li&gt;&lt;li data-block-key="7fc2v"&gt;&lt;a href="http://koolio.ai/" target="_blank"&gt;Koolio.ai&lt;/a&gt; helps creators produce high-quality podcasts and audio content. Koolio.ai integrates Gemini, Lyria, and Veo to power features such as AI-generated dialogue, accurate transcription, intelligent sound effects and music selection, and audio enhancement, streamlining the entire audio creation workflow from concept to final production.&lt;/li&gt;&lt;li data-block-key="akq80"&gt;&lt;a href="http://mountain.com/" target="_blank"&gt;MNTN&lt;/a&gt; uses Google Cloud to power its Connected TV ad platform, making TV campaigns as measurable as search or social. With AI-driven tools like MNTN Matched and Security Command Center, MNTN scales creative and targeting securely and at speed.&lt;/li&gt;&lt;li data-block-key="hse9"&gt;&lt;a href="https://www.napster.com/" target="_blank"&gt;Napster,&lt;/a&gt; a metaverse company, is building a no-code 3D e-commerce platform on Google Cloud using Vertex AI and Gemini. This supported 20-85% infrastructure cost reductions and saved over 3,600 developer hours, making immersive 3D web experiences accessible and affordable for its customers.&lt;/li&gt;&lt;li data-block-key="6aunr"&gt;&lt;a href="https://www.potrerolabs.com/" target="_blank"&gt;Potrero Labs&lt;/a&gt;, a creator-focused platform, has launched Jams, an AI-first video social network empowering authentic self-expression. Its platform simplifies video creation, allowing users to record short videos and let Jams enhance them. Jams offers a simple UI with a variety of models under the hood, including Gemini 2.5 Pro for script creation, multi-modal Gemini for video analysis, and Veo 3 for backgrounds, b-rolls, and audio.&lt;/li&gt;&lt;li data-block-key="fi7u"&gt;&lt;a href="http://producer.ai/" target="_blank"&gt;Producer.ai&lt;/a&gt; (formerly Riffusion), an AI music platform, trains generative music models and builds products that empower anyone to create the music they imagine. "The Producer" music collaboration agent helps users create original, studio-quality songs from text, audio, or visual prompts. Gemini on Vertex AI assists with prompt augmentation and data pipelines, while Vertex AI APIs offer access to advanced multimodal models for experimentation.&lt;/li&gt;&lt;li data-block-key="riri"&gt;&lt;a href="http://rembrand.us/" target="_blank"&gt;Rembrand&lt;/a&gt; is an AI-powered advertising platform that facilitates in-video product placements for content creators and advertisers on social media and connected TV. Powered by Google Cloud's AI Infrastructure, Rembrand enables brands to genuinely connect with audiences without disrupting the content.&lt;/li&gt;&lt;li data-block-key="e4nbd"&gt;&lt;a href="http://satisfilabs.com/" target="_blank"&gt;Satisfi Labs&lt;/a&gt; will begin using Gemini models to power a new agentic platform for hundreds of customers in sports, entertainment, and tourism. The Agentic Platform delivers specialized agents for guest experiences, ticketing, on-site, safety, and merchandise tuned by industry experts to help live experience businesses sell more, service faster, and gain real-time insights from every guest conversation&lt;/li&gt;&lt;li data-block-key="fjs4m"&gt;&lt;a href="http://scorpion.co/" target="_blank"&gt;Scorpion&lt;/a&gt;, a digital marketing company for SMBs, uses Veo to scale video ad production. By integrating this technology into its toolkit, Scorpion makes creating professional videos for websites and advertising faster and more accessible for all businesses.&lt;/li&gt;&lt;li data-block-key="99sq7"&gt;&lt;a href="http://status.pro/" target="_blank"&gt;StatusPro&lt;/a&gt; builds NFL virtual reality experiences for gaming and training and is now developing its newest game on Google Cloud, including a new Gemini-powered in-game coach.&lt;/li&gt;&lt;li data-block-key="2qs0q"&gt;&lt;a href="https://www.synthesia.io/" target="_blank"&gt;Synthesia,&lt;/a&gt; an AI video enterprise platform, helps businesses create instructional videos for employee training, customer support, sales enablement, and product marketing. The company is using Veo 3 to contextually adapt visuals to the content delivered by its AI avatars and voices.&lt;/li&gt;&lt;li data-block-key="16bir"&gt;&lt;a href="http://tinuiti.com/" target="_blank"&gt;Tinuiti&lt;/a&gt;, a performance marketing agency, used Google's VertexAI to develop an AI-powered service that develops and optimizes ad copy to increase performance. The tool embodies a philosophy of maximizing growth by minimizing waste, and a recent experiment showed significant ROAS performance improvements compared to human-curated copy.&lt;/li&gt;&lt;li data-block-key="bbl6d"&gt;&lt;a href="http://toonsutra.com/" target="_blank"&gt;Toonsutra&lt;/a&gt;, an India-based webcomic platform, is using Google’s Gemini AI to go global. By making stories accessible in regional languages and adding Lyria 2 for music, Gemini for voices, and Veo 3 for animation, they’re creating next-gen immersive comics.&lt;/li&gt;&lt;li data-block-key="43qkh"&gt;&lt;a href="http://velin.ai/" target="_blank"&gt;Velin.ai&lt;/a&gt;, a content creation platform for small businesses, offers an AI agent that explains the content and its underlying strategic implications while acting as a unified content workspace. Gemini 2.5 drafts everything from scripts to social campaigns, while Imagen 4 and Veo 3 generate aligned visuals and video clips, ensuring a consistent brand narrative across all content.&lt;/li&gt;&lt;li data-block-key="d5o06"&gt;&lt;a href="http://visla.us/" target="_blank"&gt;Visla&lt;/a&gt; is an AI-powered video creation platform that helps businesses and creators produce pro videos in minutes. Using Google’s Imagen 4, Gemini Flash Image 2.5, Veo 3, and Visla’s AI Video Agent with Avatars, it adapts visuals, narration, and automates polished content for learning, training, and marketing.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/9-150-startup-ai-use-cases-education.max-1000x1000.png"
        
          alt="9-150-startup-ai-use-cases-education"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="kcvvv"&gt;&lt;a href="https://docs.google.com/spreadsheets/d/16LDrL7mNaEDlD4veHlhOJWOX-4Q9oQcM8hq2ImOLlWs/litlab.ai/" target="_blank"&gt;LitLab.ai&lt;/a&gt;, a reading platform, leverages Veo3 and Vertex AI to generate personalized, curriculum-aligned stories and provide real-time oral reading analysis. They create decodable content and employ voice recognition for instant teacher feedback on student fluency.&lt;/li&gt;&lt;li data-block-key="dout8"&gt;&lt;a href="http://savvy-software.com/" target="_blank"&gt;Savvy&lt;/a&gt; revolutionizes learning by automatically generating flashcards and quizzes from PDFs, notes, videos, and podcasts. As students answer, Savvy leverages Gemini to dynamically grade their answers, providing instant feedback and personalized learning.&lt;/li&gt;&lt;li data-block-key="42t2l"&gt;&lt;a href="https://studyhall.ai/" target="_blank"&gt;Studyhall AI,&lt;/a&gt; an AI research platform, graduated from Google Cloud’s UK Growth Accelerator program and built a mobile application that uses Gemini models to help coach students on reading, writing, and exam prep.&lt;/li&gt;&lt;li data-block-key="4ntsb"&gt;&lt;a href="http://subject.com/" target="_blank"&gt;Subject.com&lt;/a&gt;, an AI-powered platform for grades 6-12, blends cinematic storytelling with superintelligent AI so students and teachers never get stuck. VertexAI, CloudSQL &amp;amp; BigQuery power Subject’s teacher assistant tool Spark, instant feedback, "ExplainThis" text simplifier, 24/7 Homework Helper, and personalized learning tied to student interests.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/10-150-startup-ai-use-cases-retail.max-1000x1000.png"
        
          alt="10-150-startup-ai-use-cases-retail"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="kcvvv"&gt;&lt;a href="http://deeli.ai/" target="_blank"&gt;Deeli AI&lt;/a&gt;, an AI-powered platform, helps companies discover and evaluate emerging technologies to make informed investment decisions. The company builds its product and data pipeline on various services such as GCE, Cloud Run, and Dataflow, and uses models from the Vertex AI Model Garden.&lt;/li&gt;&lt;li data-block-key="10cjg"&gt;&lt;a href="http://nectar.com/" target="_blank"&gt;Nectar's&lt;/a&gt; AI-driven community agents with Gemini to handle customer conversations on social platforms, influencer marketing, and real-time product feedback at scale for leading brands &amp;amp; retailers. By transforming unstructured social data into actionable insights and powering customer conversations, Nectar helps brands deepen relationships and drive measurable growth.&lt;/li&gt;&lt;li data-block-key="30f7q"&gt;&lt;a href="http://simberobotics.com/" target="_blank"&gt;Simbe&lt;/a&gt;, a multimodal, retail-focused computer vision company, built its AI-powered Store Intelligence platform on Google Cloud. By deploying autonomous robots and sensors, Simbe provides real-time insights into shelf inventory and price accuracy. This helps retailers reduce out-of-stock instances, improve pricing and promotion execution to the high 90% range, and achieve a 4x return on investment within 90 days.&lt;/li&gt;&lt;li data-block-key="aenv5"&gt;&lt;a href="http://zapia.com/" target="_blank"&gt;Zapia AI&lt;/a&gt;, a retail technology company, uses AI agents to support millions of users with product discovery, local business searches, and purchase assistance, resulting in over 90% positive user feedback. Its multi-agent orchestration is powered by Gemini to improve agent reasoning, reduce latency, and lower operational costs.&lt;/li&gt;&lt;li data-block-key="4mfr2"&gt;&lt;a href="http://zazzle.com/" target="_blank"&gt;Zazzle&lt;/a&gt; is a global platform for custom products and designs made on demand. Zazzle uses Gemini ADK and CCaaS to facilitate chat-based product discovery and enhance customer experience, making it easier to find the right designs across a wide range of products.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/11-150-startup-ai-use-cases-security-respo.max-1000x1000.png"
        
          alt="11-150-startup-ai-use-cases-security-responsible-ai"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="kcvvv"&gt;&lt;a href="http://aptori.dev/" target="_blank"&gt;Aptori&lt;/a&gt;, an AI security company, detects vulnerabilities in AI-generated code, prioritizes risks, and automates code fixes in real-time. Aptori uses Gemini to analyze code for security weaknesses and generate context-aware fixes, integrating its AI Security Engineer directly into developer workflows.&lt;/li&gt;&lt;li data-block-key="dbmvb"&gt;&lt;a href="https://www.chainguard.dev/" target="_blank"&gt;Chainguard,&lt;/a&gt; a software supply chain security company, uses Google Cloud Run and Google Kubernetes Engine to provide developers with secure open-source building blocks. Its serverless architecture streamlines operations and product development, reducing infrastructure management costs and enabling them to scale effortlessly to meet increasing user demand.&lt;/li&gt;&lt;li data-block-key="av355"&gt;&lt;a href="https://www.eon.io/" target="_blank"&gt;Eon,&lt;/a&gt; a cloud data protection platform, uses Google Cloud Storage and BigQuery to transform backups into AI-ready data lakes. This allows its customers to eliminate fragmented data silos, reduce secondary storage costs by up to 98%, and improve data recovery times by up to 90%.&lt;/li&gt;&lt;li data-block-key="3tipg"&gt;&lt;a href="http://galileo.ai/" target="_blank"&gt;Galileo&lt;/a&gt;, an AI observability and evaluation platform for building trustworthy AI applications, addresses the critical challenge of mitigating LLM unpredictability and hallucinations. Using Gemini to build its "evaluation agents" and running on a scalable Google Cloud infrastructure with NVIDIA GPUs, Galileo provides a holistic "trust layer" for reliable AI. This has enabled customers to de-risk over 1,000 AI applications, while go-to-market support from the Google for Startups Cloud Program helps Galileo accelerate growth and unlock new opportunities.&lt;/li&gt;&lt;li data-block-key="fk46n"&gt;&lt;a href="http://predictionguard.com/" target="_blank"&gt;Prediction Guard&lt;/a&gt; is using Google Cloud services like Confidential Computing and Vertex AI to support its platform for added gen AI safety.&lt;/li&gt;&lt;li data-block-key="cim94"&gt;&lt;a href="https://resistant.ai/" target="_blank"&gt;Resistant AI&lt;/a&gt;, an AI-powered security company, uses Google Cloud to build solutions that combat fraud in financial services documentation and workflows. Running on Google Cloud infrastructure, the company's specialized document fraud detectors scrutinize financial documents in 500 different ways, helping to protect automated workflows like those using Google's Document AI from sophisticated financial crime.&lt;/li&gt;&lt;li data-block-key="29rt6"&gt;&lt;a href="http://specular.ai/" target="_blank"&gt;Specular&lt;/a&gt;, an offensive cybersecurity platform, builds AI agents using Gemini 2.5 Pro to automate attack surface management and penetration testing. Their platform automates traditional workflows to identify, assess, and remediate cybersecurity, helping enterprises proactively prioritize and respond to threats.&lt;/li&gt;&lt;li data-block-key="6f4e3"&gt;&lt;a href="http://wyzecam.com/" target="_blank"&gt;Wyze Labs&lt;/a&gt; is rolling out new AI-powered anomaly detection features for its security camera systems, powered by Google’s vision AI tool.&lt;/li&gt;&lt;li data-block-key="acimn"&gt;&lt;a href="http://zefr.com/" target="_blank"&gt;Zefr&lt;/a&gt;, a global leader in responsible AI, powers Fortune 500 brand advertising with safety and suitability on platforms like YouTube and TikTok. Using patented Cognitive AI with Gemini Flash and Vertex AI, Zefr analyzes video, image, audio, and text to deliver trusted, scalable solutions.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/12-150-startup-ai-use-cases-analytics-othe.max-1000x1000.png"
        
          alt="12-150-startup-ai-use-cases-analytics-other-ai"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;ul&gt;&lt;li data-block-key="kcvvv"&gt;&lt;a href="http://asim.sh/" target="_blank"&gt;aSim&lt;/a&gt;, an AI-powered mobile app development tool, allows you to quickly generate, share, and discover mini-apps. Users can instantly generate an app from a prompt, leveraging APIs/LLMs like Google Maps and Gemini, as well as image and video generation from Nano Banana and Veo 3.&lt;/li&gt;&lt;li data-block-key="6ouve"&gt;&lt;a href="https://www.thisisbud.com/" target="_blank"&gt;Bud Financial&lt;/a&gt;, a data intelligence provider focused on banking clients, leverages DataStax Astra DB on Google Cloud with Gemini. The platform enables ultra-fast processing of complex financial data, helping clients reduce fraud by over 90% and shortening the time required to access critical data analytics from weeks to minutes.&lt;/li&gt;&lt;li data-block-key="5f6vl"&gt;&lt;a href="http://bynry.com/" target="_blank"&gt;Bynry's&lt;/a&gt; SMART360 leverages Google Cloud’s robust infrastructure to empower small and mid-sized utilities to enhance operational efficiency and customer satisfaction.&lt;/li&gt;&lt;li data-block-key="bih7b"&gt;&lt;a href="http://citylitics.com/" target="_blank"&gt;Citylitics&lt;/a&gt;, a predictive intelligence platform, transforms public infrastructure investment for municipalities, utilities, and engineering firms. By automating data processing with Dataflow and Cloud Run, it cuts analysis time by 71% and boosts data sources by 400%, helping customers proactively identify and win new business.&lt;/li&gt;&lt;li data-block-key="8s5qc"&gt;&lt;a href="https://contextqa.com/" target="_blank"&gt;ContextQA&lt;/a&gt;, an Agentic AI software testing platform, enables accurate, user-centric test automation from development start. The platform uses Gemini models to compare application behavior with expected outcomes, adapting automatically to changes.&lt;/li&gt;&lt;li data-block-key="5eqae"&gt;&lt;a href="http://flockx.io/" target="_blank"&gt;Flockx,&lt;/a&gt; an AI-powered event app, migrated to Google Cloud to support its growth and control costs. Using Google Kubernetes Engine and autoscaling on Compute Engine, the company accelerated product development and successfully demonstrated scalability by processing over 100,000 AI runs in a single weekend.&lt;/li&gt;&lt;li data-block-key="ae6bq"&gt;&lt;a href="https://www.macro.io/" target="_blank"&gt;Macro&lt;/a&gt;, an AI productivity platform, uses Gemini to modernize knowledge work by offering a unified workspace with features like multi-document chat and editable mind maps. The platform simplifies complex workflows and scales with demand for over 125,000 users in legal, finance, and education, while offering enterprise-grade security, data privacy, and compliance.&lt;/li&gt;&lt;li data-block-key="8tuae"&gt;&lt;a href="http://maestroqa.com/" target="_blank"&gt;MaestroQA&lt;/a&gt;, a conversation analytics data platform, is leveraging Gemini to enhance its AI-powered conversation analytics. By using Gemini, MaestroQA is improving its ability to analyze customer interactions across every channel, providing deeper insights that help businesses boost customer satisfaction and drive growth and retention.&lt;/li&gt;&lt;li data-block-key="a53bb"&gt;&lt;a href="http://mltwist.com/" target="_blank"&gt;MLtwist&lt;/a&gt;, an AI data pipeline services company, processes, transcribes, translates, and labels large, complex data streams for enterprise applications. It uses Gemini and AI Studio for transcription and labeling tasks, saving approximately 63% of the time required to process even highly illegible documents.&lt;/li&gt;&lt;li data-block-key="cb5l9"&gt;&lt;a href="http://moii.ai/" target="_blank"&gt;Moii.AI,&lt;/a&gt; a vision AI startup, uses Gemini and BigQuery to analyze CCTV footage for safety and productivity insights. This approach reduced video review time from days to minutes, saved the company $10,000 monthly on AI processing costs, and doubled its engineering team’s efficiency.&lt;/li&gt;&lt;li data-block-key="83ftb"&gt;&lt;a href="http://owl.ai/" target="_blank"&gt;Owl.AI&lt;/a&gt;, a sports technology company, delivers AI-powered solutions to professional sports leagues. Their offerings, which include judging and scoring, aim to enhance accuracy, consistency, and eliminate bias. Owl.AI achieves this by leveraging AI models built on Gemini and fine-tuned on Google Cloud to analyze real-time video footage of athletic performances.&lt;/li&gt;&lt;li data-block-key="epdev"&gt;&lt;a href="http://provenbase.com/" target="_blank"&gt;Provenbase&lt;/a&gt; has built its talent recruitment tool for businesses on Google Cloud and is now powering its transformative Deep Search for talent feature using Google Cloud AI.&lt;/li&gt;&lt;li data-block-key="22ggk"&gt;&lt;a href="http://resolve.ai/" target="_blank"&gt;SandboxAQ&lt;/a&gt; is expanding its usage of Google Cloud and running a new AI drug discovery simulation platform on Google Cloud.&lt;/li&gt;&lt;li data-block-key="bokq8"&gt;&lt;a href="http://satlyt.ai/" target="_blank"&gt;Satlyt&lt;/a&gt;, a space compute leader, enables in-orbit AI workloads by orchestrating intersatellite communication and routing. It uses Google Cloud's Kubernetes Engine, Vertex AI, and scalable data infrastructure to deploy AI agents and plans to deploy Google's Gemma models in orbit.&lt;/li&gt;&lt;li data-block-key="48m9v"&gt;&lt;a href="https://www.se3labs.com/" target="_blank"&gt;SE3 Labs,&lt;/a&gt; a 3D computer vision and AI company, uses Cloud Run to deploy advanced AI model technologies that create "Spatial GPTs," which are essentially AI models that can understand and interact with the world in 3D.&lt;/li&gt;&lt;li data-block-key="506co"&gt;&lt;a href="https://temporal.io/" target="_blank"&gt;Temporal,&lt;/a&gt; a durable execution platform for developers, uses Vertex AI to enhance its customer support operations. The solution provides improved visibility into support trends by automatically categorizing 80% of support tickets, allowing the team to anticipate customer needs and identify new opportunities.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description><pubDate>Tue, 07 Oct 2025 09:37:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/150-ai-use-cases-leading-startups-and-digital-natives/</guid><category>AI &amp; Machine Learning</category><category>Events</category><category>Customers</category><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/150-startup-ai-use-cases-gen-ai-header.max-600x600.png" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>150 of the latest AI use cases from leading startups and digital natives</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/150-startup-ai-use-cases-gen-ai-header.max-600x600.png</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/150-ai-use-cases-leading-startups-and-digital-natives/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Darren Mowry</name><title>VP, Global Startups, Google Cloud</title><department></department><company></company></author></item><item><title>How Google Cloud’s AI tech stack powers today’s startups</title><link>https://cloud.google.com/blog/topics/startups/differentiated-ai-tech-stack-drives-startup-innovation-google-builders-forum/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;AI has accelerated startup innovation more than any technology since perhaps the internet itself, and we’ve been fortunate to have a front row seat to much of this innovation here at Google Cloud. Nine of the top ten AI labs use Google Cloud, as does nearly every AI unicorn and more than 60% of the world’s gen AI startups overall.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;And the trend of AI startups choosing us is accelerating. For example, we’ve seen more than a 20% increase over the past year in the number of newer AI Startups (those who recently raised a Series A or B round) choosing to use Google Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;These startups are building with &lt;/span&gt;&lt;a href="https://cloud.google.com/products/ai"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;our differentiated AI stack&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, which offers leading technology and choice at every layer, including a variety of TPU and GPU specialized chips for compute, and a broad range of models that excel at coding, image and video generation, collaboration, and more.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Today, we’re hosting our first-ever &lt;/span&gt;&lt;a href="https://www.googlecloudevents.com/AI-builders-forum" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google's AI Builders Forum&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, bringing hundreds of startup founders, and builders together in the heart of Silicon Valley to hear about how Google’s &lt;/span&gt;&lt;a href="https://cloud.google.com/use-cases/generative-ai"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://cloud.google.com/solutions/ai-hypercomputer"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;infrastructure&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, and services, as well as our &lt;/span&gt;&lt;a href="https://cloud.google.com/startup/apply"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;unique resources to support startups’ growth&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, can help them build.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;&lt;span style="vertical-align: baseline;"&gt;To further that support, and help startups jumpstart work in the exciting realm of AI agents, &lt;/span&gt;&lt;a href="https://cloud.google.com/resources/content/building-ai-agents?utm_source=google_start_up&amp;amp;utm_medium=et&amp;amp;utm_campaign=FY25-Q3-GLOBAL-SMB34129-website-dl-ai-agent-report-51052&amp;amp;utm_content=builders_forum_blog&amp;amp;e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;we’ve just published&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; our &lt;/span&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;Startup technical guide: AI agents&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;. It’s an in-depth collection of best practices and step-by-step guidance for building and scaling agentic AI, so you can get from idea to production faster. It also covers &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;core agentic concepts like RAG and multimodality, and how to leverage Google Cloud’s agentic offerings, like &lt;/span&gt;&lt;a href="https://cloud.google.com/vertex-ai/generative-ai/docs/agent-development-kit/quickstart"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;ADK&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/agent2agent-protocol-is-getting-an-upgrade?e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;A2A&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We’re also excited to announce momentum with dozens of startup customers who are building platforms, products, and entire businesses on Google Cloud, including:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Afooga&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, an AI-powered content experimentation factory, enables businesses to generate, test, and distribute content at massive scale from a single hypothesis, automatically optimizing across TikTok, Meta, YouTube, and more. Afooga now leverages Vertex AI and Veo for generative video capabilities.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Anara&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, a generative AI research assistant, helps users find and understand scientific documents with verifiable AI summaries and insights. It now uses Google Cloud's scalable infrastructure, AI Studio, and Cloud Functions to power its models and data processing for a global user base.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Aptori&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, an AI security company, detects vulnerabilities in AI-generated code, prioritizes risks, and automates code fixes in real-time. Now, Aptori uses Gemini to analyze code for security weaknesses and generate context-aware fixes, integrating its AI Security Engineer directly into developer workflows.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;aSim&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, an AI-powered mobile app development tool, allows people to quickly generate, share, and discover mini-apps. Users can now instantly generate an app from a prompt using Gemini models and multimodal capabilities from models like Gemini 2.5 Flash Image (i.e. Nano Banana) and Veo 3.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;CerebraAI&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; develops AI software for analyzing non-contrast CT scans (NCCT), with a focus on early stroke and cancer detection. It fine-tunes MedGemma on NCCT images and leverages Gemini's few-shot generalization capabilities to rapidly adapt its model for various diagnostic tasks.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Clavata.ai&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; delivers an integrated AI governance and safety platform with multi-modal, real-time evaluations powered by Gemini models. Its suite of tools enable proactive policy enforcement, dynamic debugging, iteration, observability, and problem prevention.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Clip Media&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; built Reclip, a social media application that leverages Google's generative media models like Veo and Imagen to create short, engaging animated videos from real-time audio clips, captured by their proprietary app.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;CoVet&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is an AI assistant built for veterinary professionals, that uses Gemini, Cloud Functions, and other Google Cloud solutions to help veterinary teams automate administrative work, save hours every day, and refocus on what matters most: exceptional patient care.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;ColomboAI&lt;/strong&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;has built its next-generation social engagement super-app on Google Cloud, integrating search, social, commerce, and news into one experience. The company is now launching CAIRO, its in-app AI Operator agent that can automate actions across modules — from GenAI to feeds, shop, and beyond — powered by Google Cloud AI infrastructure.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Corma&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is using Google Cloud’s AI infrastructure to train novel, domain-specific foundation models.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Factory, &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;a platform for agent-driven software development, accelerates engineering by unifying context from sources like GitHub and Jira to delegate tasks such as feature development and migrations. It uses Gemini 2.5 Flash for data ingestion and Gemini 2.5 Pro for advanced code and document generation.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Gobii&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; provides AI Agents that automate complex web tasks like forms and workflows directly in the browser. To power these intelligent agents, Gobii is building on Vertex AI and scalable GKE infrastructure.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;InstaLILY&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is using Gemini 2.5 and Vertex AI to power AI agents, called InstaWorkers, that can support sales, service, and operations. &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Inworld AI&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;,&lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;an AI platform for builders of consumer applications, uses Google Cloud and Gemini to cost-effectively handle tens of millions of concurrent users with response times measured in milliseconds, meeting strict requirements for quality, cost control, and security.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Krea.ai&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, a creative suite of AI tools, offers real-time image and video generation and personalized model training for artists and marketers. It integrates with Google Cloud to provide access to advanced models like Veo3 and Gemini 2.5 Flash Image (Nano Banana), enabling users to create high-quality ads, product photos, and game assets.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Lovable, &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;which is building an AI software engineer, uses Vertex AI to deploy and unify its core language models, including Gemini and Anthropic's models. This unique orchestration enables users to create complete, full-stack web applications from plain English descriptions while choosing the model on Google Cloud that best suits their needs.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;MaestroQA&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;a conversation analytics data platform, is now using Gemini to enhance its AI-powered conversation analytics. Gemini helps MaestroQA improve its ability to analyze customer interactions across every channel, providing deeper insights that help businesses boost customer satisfaction and drive growth and retention.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Markups.ai&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; created &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;Agent Marko, an AI contract negotiation agent, which helps turn days-long human legal review into an easier automated process. Users simply email contracts to a designated inbox and receive customized revisions and analysis back within minutes. Gemini 2.5 Pro has enabled Markups.ai to go from handling only first revisions of NDAs to effectively any revision of any contract.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;MLtwist&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, an AI data pipeline services company, processes, transcribes, translates, and labels large, complex data streams for enterprise applications. It now uses Gemini models and AI Studio for transcription and labeling tasks.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;MNTN&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; uses Google Cloud to power its connected-TV ad platform which helps users better measure the impact of their TV campaigns. MNTN uses Google’s Security Command Center to ensure users have a secure experience on its platform.  &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Mosaic&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; lets users build and run multimodal video-editing AI agents. It uses Gemini 2.5 Pro, Cloud Storage, and Cloud Run to power its platform.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;OpenArt&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, an AI video production company, empowers social media creators and SMBs to turn ideas into videos complete with motion, music, and a narrative arc with Gemini models and Veo3.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;OpenEvidence &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;is building its AI-powered medical search platform on Google Cloud, enabling healthcare professionals to access medical information more quickly, safely, and accurately.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Owl.AI&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, Owl.AI, a sports technology company, delivers AI-powered solutions to professional sports leagues. Their offerings, which include judging and scoring, aim to enhance accuracy, consistency, and eliminate bias. Owl.AI achieves this by leveraging AI models built on Gemini and fine-tuned on Google Cloud to analyze real-time video footage of athletic performances.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Parallel &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;uses Gemini models via Vertex AI to orchestrate “micro agents” that can manage AI search requests more effectively.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Prodia,&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; a generative AI API, offers developers APIs to integrate generative AI into their creative tools. Prodia relies on GPUs on Google Cloud to serve text-to-image and instruct-to-edit models, our low-latency network to ensure scalable, cost-effective performance, Dynamic Workload Scheduler for burst capacity, and models like Veo 3 and Gemini 2.5 Flash Image to power advanced video and image generation.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Provenbase &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;has built its talent recruitment tool for businesses on Google Cloud and is now powering its transformative deep search for talent feature using Google Cloud AI.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Qualia&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt;Clear&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is an agentic system that improves real estate closings by automating manual title and escrow workflows. It uses tool calling, Gemini 2.5 Flash and Gemini 2.5 Pro, and Google Agent Development Kit to process emails and documents and simplify reporting, improving efficiency and customer service.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Rembrand&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is an AI-powered advertising platform that facilitates in-video product placements for content creators and advertisers on social media and connected TV. Powered by Google Cloud's AI infrastructure, Rembrand enables brands to genuinely connect with audiences without disrupting the content.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Resolve AI&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, an always-on AI SRE, autonomously investigates incidents and helps run production systems using code, infrastructure, and observability data. With the intelligence and performance of Gemini on Vertex AI, Resolve AI improves MTTR, reliability, and engineering velocity for its customers.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;SandboxAQ&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is scaling its AI-accelerated drug discovery and materials design platform on Google Cloud by training Large Quantitative Models (LQMs) on high-accuracy, physics-based simulations run across massively parallel compute nodes on Google Cloud. SandboxAQ recently made two large-scale datasets, called SAIR and AQCat25, publicly available for building and benchmarking LQMs for structure-aware drug potency prediction and for catalyst design, respectively.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Satlyt&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, a space compute company, enables in-orbit AI workloads by orchestrating intersatellite communication and routing. It uses Google Kubernetes Engine, Vertex AI, and scalable data infrastructure to deploy AI agents and plans to deploy Google's Gemma models in orbit.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Satisfi Labs&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; will begin using Gemini models to power a new agentic platform for hundreds of customers in sports, entertainment, and tourism. The Satisfi AI platform will offer specialized agents supporting guest experiences, ticketing, on-site safety, and merchandise. Tuned by industry experts, Satisfi AI helps live experience businesses sell more, service faster, and gain real-time insights.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Savvy&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;an education-focused AI startup, revolutionizes learning by automatically generating flashcards and quizzes from PDFs, notes, videos, and podcasts. As students answer, Savvy uses Gemini to dynamically grade their answers, providing instant feedback and personalized learning.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Skyvern&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; helps companies automate browser-based workflows with AI. Skyvern uses models like Gemini 2.5 Pro and computer vision to interact with websites, enabling it to automate tasks like filling out forms, procuring materials, and downloading invoices. &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Subject.com&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, an AI-powered platform for grades 6 to 12, blends cinematic storytelling with advanced AI to make learning more engaging. Vertex AI, CloudSQL, and BigQuery power Subject’s teacher assistant tool, Spark, that provides instant feedback, an ‘Explain This’ text simplifier, a 24/7 Homework Helper, and personalized learning tied to student interests.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Tali.ai &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;is a medical AI scribe designed to reduce the administrative burden on clinicians. Integrated with multiple electronic medical record systems across the U.S. and Canada, the company uses Vertex AI and Gemini models to automate clinical note-taking during patient visits and extract key insights.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Tinuiti&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, a performance marketing agency, used Vertex AI to develop an AI-powered service that develops and optimizes ad copy to increase performance.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Toonsutra&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, an India-based webcomic platform, is using Google Gemini to go global. By making stories accessible in regional languages and adding Lyria 2 for music, Gemini for voices, and Veo 3 for animation, the company is creating next-generation immersive comics for more audiences.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;turbopuffer &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;offers serverless vector and full-text search, helping AI businesses overcome the high costs and complexity of traditional database architectures. ​Its solution, built on Google Cloud infrastructure, has reduced AI database cost by up to 90% for customers, manages more 1 trillion documents, and handles more than 10 million writes and 10,000 queries every second.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Upwork&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, a human and AI-powered work marketplace, connects businesses with independent professionals. By leveraging the Vertex AI Text-to-Speech API, Upwork now delivers faster, more accurate talent matching and improved hiring efficiency for clients and freelancers.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Visla&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is an AI-powered video creation platform that helps businesses and creators produce pro videos in minutes. Using Imagen 4, Gemini Flash Image 2.5, Veo 3, and Visla’s AI Video Agent with Avatars, it adapts visuals and narration while automating polished content creation for learning, training, and marketing.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Windsurf&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, a leader in AI-assisted coding, is using Gemini 2.5 Pro to power its coding assistance IDE, as well as using Gemini models to support integrations with Cognition’s Devin AI.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Zapia AI&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;, a retail technology company, uses AI agents to support millions of users with product discovery, local business searches, and purchase assistance, resulting in over 90% positive user feedback. Its multi-agent orchestration is powered by Gemini to improve agent reasoning, reduce latency, and lower operational costs.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Zefr&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;&lt;span&gt;&lt;span style="vertical-align: baseline;"&gt;, a global leader in responsible AI, powers Fortune 500 brand advertising with safety and suitability on platforms like YouTube and TikTok. Using patented “cognitive AI” with Gemini Flash and Vertex AI, Zefr analyzes video, image, audio, and text to deliver trusted, scalable solutions.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Google Cloud’s differentiated AI stack for startups&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Around the world, startups are using Google Cloud at every step of development and every stage of growth. They’re using our AI and infrastructure to train and serve models, to handle multimodal requests, to build and scale applications, to develop AI agents, to manage underlying data, to support developers, to &lt;/span&gt;&lt;a href="https://cloud.google.com/programs/startups/isv-startup-springboard"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;reach customers through our marketplace&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, and more.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://cloud.google.com/transform/101-real-world-generative-ai-use-cases-from-industry-leaders"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Whatever the use case&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, our full AI-optimized tech stack provides startups with leading technology and choice at every layer, including:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Highly-performant first-party chips (&lt;/span&gt;&lt;a href="https://cloud.google.com/tpu"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;TPUs&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;) and third-party chips (&lt;/span&gt;&lt;a href="https://cloud.google.com/gpu"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;GPUs&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;) for training and inferencing, as well as the ability to move workloads between the two.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://ai.google.dev/aistudio" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;AI Studio&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, a fast way for startups to get started building applications with our models.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Our unified AI development platform, &lt;/span&gt;&lt;a href="https://cloud.google.com/vertex-ai"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Vertex AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;More than &lt;/span&gt;&lt;a href="https://cloud.google.com/model-garden"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;200 AI foundation models&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, including our leading multimodal models like Nano Banana and Veo 3, and popular third-party models like Anthropic’s Claude and the open-source Llama and Mystral.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Developer tools like &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/topics/developers-practitioners/gemini-cli-custom-slash-commands?e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Gemini CLI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, which provides access to Gemini directly within the coding terminal, streamlining workflows and boosting productivity.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Products like &lt;/span&gt;&lt;a href="https://cloud.google.com/bigquery"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;BigQuery&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and &lt;/span&gt;&lt;a href="https://cloud.google.com/products/alloydb"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;AlloyDB&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to handle an organization’s underlying data.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/solutions/security?utm_source=google&amp;amp;utm_medium=cpc&amp;amp;utm_campaign=na-US-all-en-dr-bkws-all-all-trial-e-dr-1710134&amp;amp;utm_content=text-ad-none-any-DEV_c-CRE_772251307638-ADGP_Hybrid+%7C+BKWS+-+EXA+%7C+Txt-Security-Platform+Security-Security+Solutions-KWID_111084420250-kwd-111084420250&amp;amp;utm_term=KW_google+cloud+data+security-ST_google+cloud+data+security&amp;amp;gclsrc=aw.ds&amp;amp;gad_source=1&amp;amp;gad_campaignid=22970352189&amp;amp;gclid=Cj0KCQjwuKnGBhD5ARIsAD19RsYHXAl43GIaxmHic1E7eqVATH1ghTdt3xvfu24gcwFq_lllMa3Z02waAt5PEALw_wcB&amp;amp;e=48754805&amp;amp;hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Security&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; operations and threat intelligence tools to help startups secure their applications.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Services like &lt;/span&gt;&lt;a href="https://cloud.google.com/kubernetes-engine"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google Kubernetes Engine&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://cloud.google.com/storage"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Storage&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, and &lt;/span&gt;&lt;a href="https://cloud.google.com/sql"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;CloudSQL&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to quickly scale workloads and applications up and down.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;If you can dream it, then you can build it, launch it, scale it, and sell it with Google Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;More programs, initiatives, and product access for startups&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;One of the biggest challenges to starting up isn’t having the idea or the right technology — it’s access to the resources to make it happen and expertise to help tackle any challenges that arise.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Google Cloud provides a unique set of resources and benefits for startups through our &lt;/span&gt;&lt;a href="https://cloud.google.com/startup/apply?utm_source=cloud_sfdc&amp;amp;utm_medium=et&amp;amp;utm_campaign=FY21-Q1-global-demandgen-website-cs-startup_program_mc&amp;amp;utm_content=builders_forum_blog"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Cloud Program&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, including cloud credits that are applicable across all Google Cloud products and AI models — including those from our partners like Anthropic and Meta. The program also offers mentorship and go-to-market programs that help startups reach customers, and even on-the-ground engineers who engage with and support startups as they build.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We also engage deeply with the startup community through our &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/topics/startups/new-startups-join-google-ai-accelerator"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;global series of Accelerators&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and our partnerships with top venture capital firms, incubators, and community organizations — making it easier than ever for startups to access Google Cloud’s unique technology and our extensive set of resources to help startups build and market their products.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;For example, AI startups who work with firms like Lightspeed, Sequoia, or Y Combinator all have preferred access to our Google for Startups Cloud Program — supercharging their work with up to $350,000 in cloud credits along with mentorship and engineering support.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We’re committed to making it as easy as possible for startups to get building with Google Cloud AI. If you’re interested in our technology and want to get started, head to &lt;/span&gt;&lt;a href="http://aistudio.google.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google AI Studio&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; or our &lt;/span&gt;&lt;a href="https://cloud.google.com/startup/apply?utm_source=cloud_sfdc&amp;amp;utm_medium=et&amp;amp;utm_campaign=FY21-Q1-global-demandgen-website-cs-startup_program_mc&amp;amp;utm_content=builders_forum_blog"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Cloud Program&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and let’s get building together!&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 18 Sep 2025 13:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/differentiated-ai-tech-stack-drives-startup-innovation-google-builders-forum/</guid><category>AI &amp; Machine Learning</category><category>Infrastructure</category><category>Partners</category><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/builders-forum-startups-event-ai-momentum-he.max-600x600_ZRIL5tL.png" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>How Google Cloud’s AI tech stack powers today’s startups</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/builders-forum-startups-event-ai-momentum-he.max-600x600_ZRIL5tL.png</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/differentiated-ai-tech-stack-drives-startup-innovation-google-builders-forum/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Darren Mowry</name><title>VP, Global Startups, Google Cloud</title><department></department><company></company></author></item><item><title>Introducing the Class of 2025 Google for Startups Accelerator: AI First MENA and Turkey</title><link>https://cloud.google.com/blog/topics/startups/google-for-startups-accelerator-ai-first-mena-and-turkey/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="vertical-align: baseline;"&gt;Today, we are thrilled to announce the 14 innovative startups selected to join the &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/ai-first/middle-east-north-africa-turkey/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Accelerator&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;: AI First in the Middle East, North Africa and Turkey.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;span style="vertical-align: baseline;"&gt;These companies are leveraging AI to tackle significant challenges and create new opportunities across various industries. From real estate and finance to enhancing healthcare and industrial safety, this cohort represents the forefront of technological advancement in the region.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;span style="vertical-align: baseline;"&gt;The Accelerator is designed to support these startups in their journey to scale, providing comprehensive mentorship, technical training, and resources focused on product development, business strategy, and responsible tech.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;strong style="vertical-align: baseline;"&gt;Please join us in welcoming the startups participating in the Google for Startups Accelerator: AI First program:&lt;/strong&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="http://abwab.ai" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Abwab.ai&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; An AI-powered credit assessment platform that empowers financial institutions to make faster, fairer, and more accurate lending decisions for SMEs.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://www.cognna.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;COGNNA&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;An agentic SecOps platform that leverages AI agents to autonomously investigate, analyze, and respond to security threats at machine speed.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://distichain.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Distichain&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; A TradeTech platform automating import and export, connecting all participants of a trade to an ecosystem of verification, payments, and supply-chain service providers.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://eluvium.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Eluvium&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Builds AI agents to automate sales operations &amp;amp; procurement for manufacturers.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://www.foxprep.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;FoxPrep&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Brings Duolingo-style exam prep to local high-stakes exams where students currently have no quality study options.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://heemera.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Heemera&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; A global provider of crypto investigative, blockchain analytics, and assets recovery services.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://iwarranty.co/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;iWarranty&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; A unified platform to transform warranty management.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://malakah.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Malakah&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; A digital platform based on AI that provides legal services in an easy and reliable manner, without any human intervention.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://monit.tech/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Monit&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;A pioneering provider of modular digital solutions for industrial safety, efficiency, and asset management in emerging markets.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://www.navatech.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Navatech&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;An AI-first, cloud-native platform empowering frontline workers starting with health and safety in construction and other high-risk industries.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://re-skill.io/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Re-skill&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;An AI-native learning infrastructure that transforms ideas and internal documents into engaging videos, quizzes, and learning paths.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://sponixtech.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Sponix Tech&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; An award-winning sports technology startup that has developed unique solutions for leagues, clubs, and broadcasters.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://venuex.io/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;VenueX&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;An AI-powered omnichannel performance platform that connects in-store data with digital marketing channels to optimize offline ROAS, boost store visits, and improve local visibility.&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;a href="https://www.xbites.io/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;xBites&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;The MENA region’s first AI-powered real estate sales assistant, built to qualify and convert leads instantly over WhatsApp.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Please join us in welcoming this cohort to the Google for Startups Accelerator: AI First program. Visit the &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/ai-first/middle-east-north-africa-turkey/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;program page&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to learn more and sign up for future cohorts from the MENA and Turkey region.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Tue, 16 Sep 2025 07:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/google-for-startups-accelerator-ai-first-mena-and-turkey/</guid><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/AI_First_Cohort_announcements_Blog_post__1.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Introducing the Class of 2025 Google for Startups Accelerator: AI First MENA and Turkey</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/AI_First_Cohort_announcements_Blog_post__1.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/google-for-startups-accelerator-ai-first-mena-and-turkey/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Baris Yesugey</name><title>Sr. Program Manager - Head of Accelerator &amp; Startup Ecosystem, MENA-T</title><department></department><company></company></author></item><item><title>Google for Startups Accelerator: AI First – Meet the 2025 Brazilian cohort</title><link>https://cloud.google.com/blog/topics/startups/meet-the-brazilian-cohort-of-google-for-startups-accelerator/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;In a landscape where AI is an engine of growth for the Latin American economy, Brazil stands out as a leader in innovation. Google is committed to supporting and shaping the future of AI startups, and our new accelerator cohort is proof of that.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Following a highly competitive selection process, &lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt;we are proud to announce 11 startups that will participate in the AI First program. &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;This group of entrepreneurs represents the vanguard of digital transformation in the country, with innovative solutions that apply AI to solve challenges in diverse industries, from the financial and health sectors to marketing and agriculture. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong style="vertical-align: baseline;"&gt;What’s next: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;During the program, which kicks off on September 2nd, the startups will receive personalized technical and strategic support, with access to Google’s top AI experts.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Meet the new cohort of the Google for Startups Accelerator: AI First&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;a href="https://brandlovers.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;BrandLovers&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; This creator marketing platform uses AI to orchestrate campaigns, connecting brands with a network of over 300,000 influencers. Its smart technology optimizes the connection, ensuring that brands reach the right audience and achieve effective results in their marketing strategies.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://coreai.com.br" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Core AI&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Core AI transforms industrial ecosystems into scalable credit platforms. By enabling SaaS companies to offer automated, AI-driven credit products, the startup is revolutionizing how credit is made available in the market.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.courageousland.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Courageous Land&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; An agribusiness startup that uses the Agroforestry Intelligence platform to regenerate degraded landscapes through agroforestry. The technology optimizes carbon removal and organic production, contributing to sustainability and the fight against climate change.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://inspira-ai.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Inspira&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Inspira is an AI-powered legal platform created by lawyers, for lawyers. It provides reliable technology to keep law firms ahead, automating tasks and offering insights for strategic decision-making.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jota.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Jota&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; An AI platform that automates the finances and operations of entrepreneurs, boosting profitability. With a recent $60 million funding round, Jota is one of the highlights of this cohort, showcasing the potential of Brazilian AI startups.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.oncodata.com.br/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Oncodata&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; This healthtech company develops AI-powered digital pathology solutions to accelerate cancer diagnosis and expand access to health services across Latin America, bringing hope and efficiency to the sector.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.paggo.com.br" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Paggo&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; A fintech company that is transforming how construction companies in Brazil manage their finances, automating payables, receivables, and treasury. Paggo’s solution increases financial efficiency and transparency in a traditionally complex sector.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://rivio.com.br" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Rivio&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Rivio automates hospital billing with AI, reducing denials and delays through ERP integration and intelligent claim analysis. The startup is essential for optimizing the financial and operational processes of hospitals.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.tivita.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Tivita&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Tivita helps healthcare providers thrive by putting their back-office management on autopilot. The platform optimizes administrative routines, allowing healthcare professionals to focus on what truly matters: patient care.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.voiston.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Vöiston&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; A healthtech company that uses AI to analyze and understand unstructured clinical data, addressing complex challenges in the healthcare sector. Vöiston is at the forefront of medical innovation, helping to uncover valuable insights.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://yunastories.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Yuna&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Yuna develops an AI-driven platform for personalized, interactive, and free children's stories. The startup is reinventing how children engage with reading, promoting learning and creativity.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Get started&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To learn more about the Google for Startups program, visit our &lt;/span&gt;&lt;a href="https://startup.google.com/intl/pt-BR/programs/accelerator/ai-first/brazil/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;homepage&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 27 Aug 2025 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/meet-the-brazilian-cohort-of-google-for-startups-accelerator/</guid><category>Startups</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Google for Startups Accelerator: AI First – Meet the 2025 Brazilian cohort</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/meet-the-brazilian-cohort-of-google-for-startups-accelerator/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Henry Couto</name><title>Head of Accelerator &amp; Startup Ecosystem, Brazil</title><department></department><company></company></author></item><item><title>Introducing Google Cloud Setup: Your guided pathway to a secure cloud foundation</title><link>https://cloud.google.com/blog/products/devops-sre/introducing-google-cloud-setup/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Are you ready to unlock the power of Google Cloud and want guidance on how to set up your environment effectively? Whether you're a cloud novice or part of an experienced team looking to migrate critical workloads, getting your foundational infrastructure right is the key to success. That's where &lt;/span&gt;&lt;a href="https://cloud.google.com/docs/enterprise/setup-checklist"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Google Cloud Setup&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; comes in — your guided pathway to a secure cloud foundation and quick start on Google Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Google Cloud Setup helps you quickly implement Google Cloud's recommended best practices. Our goal is to provide a fast and easy path to deploying your workloads without unnecessary configuration effort. Think of it as your expert guide, walking you through the essential first steps so you can focus on what truly matters: rapidly deploying your innovative applications and services. To help you get started without financial barriers, all components and service integrations enabled during the setup process are free or include some level of no-cost access.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb86e5b6d30&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Choose the foundation that fits your needs&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We understand that every organization and project has unique requirements. That's why Cloud Setup offers three distinct guided flows to choose from:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Proof-of-concept:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Designed for users who want to set up a lightweight environment to explore Google Cloud and run initial tests or sandbox workloads. This flow focuses on the minimum configuration to get you started quickly.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Production:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; This flow is recommended for supporting production-ready workloads with security and scalability in mind. It aligns with Google Cloud’s best practices and is tailored for administrators setting up basic foundational infrastructure for production workloads.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Enhanced security:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Designed for organizations, regions or workloads with advanced security and compliance requirements, this flow defaults to more advanced security controls and is designed to help you meet rigorous requirements. Even this advanced foundation sets you up with a perpetual free tier up to certain usage limits.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/image1_LQ4uQKn.max-1000x1000.png"
        
          alt="1"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Building blocks for a solid foundation&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Cloud Setup guides you through a series of onboarding steps, presenting defaults backed by&lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;a href="https://cloud.google.com/security/best-practices"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Google Cloud best practices&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. Throughout the process, you'll also encounter key features designed to help protect your organization and prepare it for growth, including:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/kms/docs/kms-autokey"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud KMS AutoKey&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Automates the provisioning and assignment of customer-managed encryption keys (CMEK).&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/security/products/security-command-center"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Security Command Center&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;Provides security posture management for Google Cloud deployments including automatic project scanning for security issues such as open ports and misconfigured access controls.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/docs/observability"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Centralized Logging and Monitoring&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Enables you to easily set up infrastructure to monitor your system's health and performance from a central location — critical for audit logging compliance and visualizing metrics across projects.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/vpc/docs/shared-vpc"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Shared VPC Networks&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;Allows you to establish a centralized network across multiple projects, enabling secure and efficient communication between your Google Cloud resources.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/hybrid-connectivity"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Hybrid Connectivity&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Facilitates connecting your Google Cloud environment to your on-premises infrastructure or other cloud providers. This is often a critical step for workload migrations.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/support"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Support plan&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Enables you to quickly resolve any issues with help from experts at Google Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;At the end of the guided flow, you can deploy your configuration directly via the Google Cloud console or download a &lt;/span&gt;&lt;a href="https://cloud.google.com/docs/enterprise/deploy-foundation-using-terraform-from-console"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Terraform configuration file&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; for later deployment using other Infrastructure as Code (IaC) methods.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/2_RwqPvpA.gif"
        
          alt="2"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Experience the cloud faster and smarter&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Organizations using Cloud Setup experience enjoy:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Faster application deployment: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;By simplifying the initial setup, you can get your applications up and running more quickly, accelerating your cloud journey.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Reduced setup effort:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Our streamlined flow significantly reduces the number of manual steps, allowing you to establish a basic foundation with less effort.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Greater access to Google Cloud's full potential: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;By establishing a solid foundation quickly, you can more easily explore and leverage a wider range of Google Cloud services to meet your evolving needs and unlock greater value.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Ready to start your Google Cloud journey? Visit Google Cloud Setup today for a streamlined path to a secure cloud foundation. Let us guide you through the initial steps so you can focus on innovation and growth.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To learn more, visit:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/docs/enterprise/setup-checklist"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Setup documentation&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://console.cloud.google.com/cloud-setup/overview" style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Setup overview&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (requires login)&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><pubDate>Fri, 01 Aug 2025 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/devops-sre/introducing-google-cloud-setup/</guid><category>Startups</category><category>Developers &amp; Practitioners</category><category>DevOps &amp; SRE</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Introducing Google Cloud Setup: Your guided pathway to a secure cloud foundation</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/products/devops-sre/introducing-google-cloud-setup/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Stacie Buckingham</name><title>Engineering Manager</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Vladimir Andral</name><title>Senior Product Manager</title><department></department><company></company></author></item><item><title>Graduating the inaugural Google for Startups Accelerator: AI First cohort in the UK</title><link>https://cloud.google.com/blog/topics/startups/graduating-the-google-for-startups-accelerator-ai-first/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;strong style="vertical-align: baseline;"&gt;The Google for Startups Accelerator: AI First UK&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; has celebrated the graduation of its latest cohort of AI startups. The 12-week hybrid program, designed for rapid growth, began in London in April and concluded with a Demo Day and Graduation in July. Founders received mentorship from Google experts, technical support for AI technologies, and extensive networking opportunities with investors, partners, and other entrepreneurs.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;“The Program Kick-Off Week really made me re-consider some aspects that we now take for granted. I also have a TON of inspiration for future LLM/agent/multi-agent concepts that we will experiment with.” - Paul Symmers, CTO at Building Atlas.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Through the hands-on support provided during the program, DataWhisper, an agentic payment platform, was able to fully integrate Google Cloud and AI technologies, including Gemini, Vertex, and Model Garden, making Gemini the default model for their platform.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;“The Program helped incredibly by opening doors to contacts with major partners, leading to increased company valuation and closing a commercial deal during the program. Google is at the heart of my strategy for 2025-2026." - Luis Lancos, CEO at Datawhisper.  &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;At the Demo Day event, held on July 11th, in partnership with &lt;/span&gt;&lt;a href="https://www.hsbcinnovationbanking.com/gb/en?cid=HBUK%3AUKM001085%3ACL%3AP1%3ACMB%3AL14%3AGO%3ACAM%3A0%3AXAW%3A29%3A0623%3A116%3ANewCo&amp;amp;gad_source=1&amp;amp;gad_campaignid=20264436204&amp;amp;gbraid=0AAAAApylsPhdbjV-juUogUT2U5CyiPH3-&amp;amp;gclid=CjwKCAjw6s7CBhACEiwAuHQckuj4YO6fsFozgf2VoEix7KHjB60espKXnZW1gdF1wkGYsf7v0VgSWhoCjTIQAvD_BwE&amp;amp;gclsrc=aw.ds" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;HSBC Innovation Banking&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and &lt;/span&gt;&lt;a href="https://www.londonandpartners.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;London &amp;amp; Partners&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, the cohort celebrated its achievements. The event connected 15 high-potential UK startups with over 100 of the UK’s tech experts, VCs, and corporates. These startups showcased innovative AI solutions, from cancer detection to smarter supply chains, seeking partnerships and contributing to responsible AI innovation. Keynotes were delivered by Jeanine Banks, VP of Google Developer X, Laura Citron, CEO of London &amp;amp; Partners and Ryan Clements, VP Early Stage Banking at HSBC Innovation.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb842bc1280&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;strong style="vertical-align: baseline;"&gt;Learn more about the graduating startups and their inspiring work:&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/2-collage.gif"
        
          alt="2-collage"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.bindbridge.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Bindbridge&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is a generative AI platform that discovers and designs molecular glues for targeted protein degradation in plants.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.buildingatlas.io" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Building Atlas&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Edinburgh) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;uses data and AI to support the decarbonisation of non-domestic buildings by modelling the best retrofit plans for any portfolio size.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.complystream.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Comply Stream&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;helps to streamline financial crime compliance operations for businesses and consumers.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.datawhisper.co.uk" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Datawhisper&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; provides safe and compliant AI Agentic solutions tailored for the fintech and payments industry.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.deducta.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Deducta&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is a data intelligence platform that supports global procurement teams with supply chain insights and efficiencies.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.dysplasiadx.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Dysplasia Diagnostics&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;develops AI-based, non-invasive, and affordable solutions for early cancer detection and treatment monitoring.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://flow.bio" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Flow.bio&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;is an end-to-end cloud platform for running large sequencing pipelines and auto-structuring bio-data for machine learning workflows.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.humbleai.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Humble&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;enables non-technical users to build and share AI-powered apps and workflows, allowing them to automate without writing code.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong&gt;&lt;a href="https://immersive-fox.com/" rel="noopener" target="_blank"&gt;Immersive Fox&lt;/a&gt; (London)&lt;/strong&gt; uses AI to transform existing content into fully interactive video courses in minutes,  adapting in real time to every learner, to deliver personalized learning experiences at scale.&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.kestrix.io" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Kestrix&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; uses thermal drones and advanced software to map and quantify heat loss from buildings and generate retrofit plans.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.locai.co.uk/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Loc.AI&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Cardiff)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; provides the foundational operating system for truly resilient, distributed intelligence that runs without a single point of failure.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.measmerize.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Measmerize&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Birmingham) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;provides sizing advice for fashion e-commerce retailers, enabling brands to increase sales and decrease return rates.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://psi.tech/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;PSi &lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;(London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;uses AI to host large-scale online deliberations, enabling local governments to harness collective intelligence for effective policymaking.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.shareback.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Shareback&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is an AI platform that allows employees to securely interact with GPT-based assistants trained on company, department, or project-specific data.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.source.dev/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Source.dev &lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;(London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; simplifies the software development lifecycle for smart devices, to help accelerate innovation and streamline software updates.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong style="vertical-align: baseline;"&gt;Learn more about Google for Startups Accelerator programs&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; on &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;startup.google.com&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. You can also &lt;/span&gt;&lt;a href="https://docs.google.com/forms/d/e/1FAIpQLSeEuq_Sd-hKe5mDDj5P-xU073MU2tMWJaPQtGvVB4vIsiAukA/viewform?usp=pp_url&amp;amp;entry.877187925=AI+First+(United+Kingdom)" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;register your interest&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; for future programs&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; if you are a Seed to Series A stage tech startup, building innovative and highly technical AI-first solutions.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Mon, 21 Jul 2025 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/graduating-the-google-for-startups-accelerator-ai-first/</guid><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/1-hero_image.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Graduating the inaugural Google for Startups Accelerator: AI First cohort in the UK</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/1-hero_image.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/graduating-the-google-for-startups-accelerator-ai-first/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Alex Rutter</name><title>Managing Director Artificial Intelligence, EMEA</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Onajite Emerhor</name><title>Regional Lead Google for Startups Accelerator, Europe</title><department></department><company></company></author></item><item><title>Tzafon selects Google Cloud to build next-generation agentic machine intelligence</title><link>https://cloud.google.com/blog/topics/startups/tzafon-builds-the-next-generation-of-agentic-machine-intelligence-with-google-cloud-infrastructure/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;a href="https://www.tzafon.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Tzafon&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, a San Francisco-based startup and AI R&amp;amp;D lab, is partnering with Google Cloud to utilize Google’s AI-optimized infrastructure and cloud services to help Tzafon deliver automation at large scale.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The Tzafon team aims to do this by building systems and models that can support multiple, autonomous AI agents that are capable of working together and interacting with common interfaces like applications, operating systems, and web browsers.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Now, Tzafon will partner with Google Cloud to access the compute resources and cloud services it needs to train its new multi-agent models – and to develop new automation frameworks that will allow Tzafon’s agents to collaborate more quickly and seamlessly. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Through its partnership with Google Cloud, Tzafon will:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Use NVIDIA GPUs through Google Cloud to train new machine intelligence models capable of managing multiple AI agents.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Develop individual agents capable of interacting with operating systems, web browsers, and applications on a person’s behalf.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Scale workloads up or down quickly using Google Kubernetes Engine.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Use BigQuery to effectively manage the large volumes of data underpinning its systems.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Today, more than 60% of the world’s generative AI startups are using Google Cloud. Now, Tzafon joins them in gaining access to Google Cloud’s complete AI stack, with reliable compute capacity, strong price performance, robust data infrastructure, and elasticity to scale quickly, among many other features that are essential in the emerging field of AI.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;You can read more about Tzafon’s mission in its &lt;/span&gt;&lt;a href="https://www.tzafon.ai/blog/tzafon-whitepaper" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;white paper&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and learn more about how thousands of AI startups are building with Google Cloud &lt;/span&gt;&lt;a href="https://cloud.google.com/startup?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;here&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 17 Jul 2025 13:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/tzafon-builds-the-next-generation-of-agentic-machine-intelligence-with-google-cloud-infrastructure/</guid><category>AI &amp; Machine Learning</category><category>Startups</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Tzafon selects Google Cloud to build next-generation agentic machine intelligence</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/tzafon-builds-the-next-generation-of-agentic-machine-intelligence-with-google-cloud-infrastructure/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Darren Mowry</name><title>VP, Global Startups, Google Cloud</title><department></department><company></company></author></item><item><title>Automate data resilience at scale with Eon and Google Cloud Backup</title><link>https://cloud.google.com/blog/products/storage-data-transfer/data-resilience-eons-approach--google-cloud-best-practices/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Cloud backups were once considered as little more than an insurance policy. Now, your backups should do more! They should be autonomous, cost-efficient, and analytics-ready by default.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;That’s why &lt;/span&gt;&lt;a href="https://www.eon.io/blog/google-cloud-announcement" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Eon built a platform purposefully aligned with Google Cloud&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to eliminate backup blind spots, simplify recovery, and unlock the value inside backup data without requiring teams to become policy experts or infrastructure wranglers.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Still, no matter what platform you use, it’s critical to understand what resilient cloud backup looks like and how to get there with Google Cloud’s native capabilities.&lt;/span&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span style="vertical-align: baseline;"&gt;What makes cloud backup resilient?&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Before diving into tooling, it's worth asking: What does a resilient backup strategy look like in the cloud? In our work with Google Cloud users across industries, we’ve found five common criteria:&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;5 signs your backup posture may be at risk&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;You can’t easily see what’s backed up (or not)&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Retention policies vary across projects and teams&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Data is duplicated or stored inefficiently, driving up spend&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.eon.io/blog/cloud-ransomware-guide" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud ransomware&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; protection is reactive rather than policy-driven&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Recovery requires full restores even when you only need one object&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb86d351880&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h2&gt;&lt;span style="vertical-align: baseline;"&gt;Best practices for data protection&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Google Cloud provides foundational capabilities to protect your data if you configure and use them consistently. Here's how to maximize native protection:&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;1. Versioning and retention: first lines of defense&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Enable Object Versioning in Cloud Storage to retain multiple object versions, making it easier to recover from accidental deletions. Pair this with Retention Policies to enforce minimum storage lifetimes for regulatory or critical datasets.&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong style="vertical-align: baseline;"&gt;Tip:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Use Bucket Lock for write-once-read-many (WORM) protection in the areas where compliance matters most.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;2. Monitor for gaps in coverage&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Use native services like Cloud SQL backups, GKE snapshots, and Persistent Disk images, but be mindful that backup responsibilities can fall to different teams. Without centralized visibility, coverage becomes inconsistent.&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong style="vertical-align: baseline;"&gt;Tip:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Use Cloud Asset Inventory or scheduled BigQuery queries to audit coverage.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;3. Design for granular recovery&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Plan for partial restores since not everything needs a full rollback. Whether it's a single BigQuery table or a specific Cloud Storage object, restoring only what you need saves time and cost.&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong style="vertical-align: baseline;"&gt;Tip&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;: Use Object Lifecycle Management to automatically transition older or less critical Cloud Storage objects to colder storage classes.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-video"&gt;



&lt;div class="article-module article-video "&gt;
  &lt;figure&gt;
    &lt;a class="h-c-video h-c-video--marquee"
      href="https://youtube.com/watch?v=i1qrmufbJKU"
      data-glue-modal-trigger="uni-modal-i1qrmufbJKU-"
      data-glue-modal-disabled-on-mobile="true"&gt;

      
        

        &lt;div class="article-video__aspect-image"
          style="background-image: url(https://storage.googleapis.com/gweb-cloudblog-publish/images/Screenshot_2025-06-19_at_11.36.51AM_1.max-1000x1000_QEI2O0T.png);"&gt;
          &lt;span class="h-u-visually-hidden"&gt;Google Cloud New Way to Cloud video interview with Eon CTO Ron Kimchi&lt;/span&gt;
        &lt;/div&gt;
      
      &lt;svg role="img" class="h-c-video__play h-c-icon h-c-icon--color-white"&gt;
        &lt;use xlink:href="#mi-youtube-icon"&gt;&lt;/use&gt;
      &lt;/svg&gt;
    &lt;/a&gt;

    
      &lt;figcaption class="article-video__caption h-c-page"&gt;
        
          &lt;h4 class="h-c-headline h-c-headline--four h-u-font-weight-medium h-u-mt-std"&gt;Watch out New Way to Cloud interview with Eon CTO and co-founder Ron Kimchi.&lt;/h4&gt;
        
        
      &lt;/figcaption&gt;
    
  &lt;/figure&gt;
&lt;/div&gt;

&lt;div class="h-c-modal--video"
     data-glue-modal="uni-modal-i1qrmufbJKU-"
     data-glue-modal-close-label="Close Dialog"&gt;
   &lt;a class="glue-yt-video"
      data-glue-yt-video-autoplay="true"
      data-glue-yt-video-height="99%"
      data-glue-yt-video-vid="i1qrmufbJKU"
      data-glue-yt-video-width="100%"
      href="https://youtube.com/watch?v=i1qrmufbJKU"
      ng-cloak&gt;
   &lt;/a&gt;
&lt;/div&gt;

&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h2&gt;&lt;span style="vertical-align: baseline;"&gt;Automating the complexity away&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Managing cloud backup at scale is hard to do manually. From onboarding new workloads to applying consistent policies, human-led approaches don’t scale well.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;That’s why more teams are exploring autonomous &lt;/span&gt;&lt;a href="https://www.eon.io/blog/cloud-backup-posture-management" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Backup Posture Management&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (CBPM) solutions, like Eon, that detect new assets in real time, apply smart backup rules automatically, and enforce consistent protection across environments.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;With Eon, you don’t have to tag resources or write custom scripts. Our platform classifies and protects your Google Cloud assets out of the box—whether you're working with GKE, Cloud SQL, BigQuery, or another solution.&lt;/span&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span style="vertical-align: baseline;"&gt;From backups to business insights&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Traditionally, backup data was siloed, underused, and only meant to be retrieved in emergencies. But, increasingly, teams are unlocking that data to:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Run analysis directly on backups using BigQuery and Dataproc,&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Feed training and monitoring pipelines via Vertex AI,&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Deliver audit-ready dashboards with Looker, powered by backup snapshots.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;With Eon, this is built-in. We transform backups into zero-ETL data lakes that reduce pipeline costs and provide immediate access to structured data with no reprocessing required.&lt;/span&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span style="vertical-align: baseline;"&gt;What a “mature” backup posture looks like&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The end goal for many cloud-native teams is not just to “have backups.” It’s to develop a resilient, intelligent backup strategy that adapts to scale and risk.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Here’s what that looks like:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Automated discovery of new resources&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Policy-driven protection tailored to data type and criticality&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Immutable backups with time-locked retention&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Search-first recovery instead of full snapshot restores&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Cost-aware tiering and storage deduplication&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Eon helps Google Cloud users reach this level of maturity faster without the burden of custom tooling or constant policy updates.&lt;/span&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span style="vertical-align: baseline;"&gt;Ready to simplify backup?&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;If your team spends hours managing scripts, storage tiers, or backup tags across cloud environments, it may be time to rethink your approach.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Eon was built to make cloud backup resilient, autonomous, and actually useful. From ransomware protection to instant, object-level recovery—and now, zero-ETL access to analytics—we’re here to help you unlock the full potential of your backup data.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.eon.io/get-a-demo" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Book a demo&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to see how Eon can modernize your Google Cloud data protection strategy.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;To discover how Google Cloud can support your startup, visit our &lt;/span&gt;&lt;a href="http://cloud.google.com/startup/apply?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q1-global-demandgen-website-cs-startup_program_mc&amp;amp;utm_content=blog_Descifra&amp;amp;utm_term="&gt;&lt;span style="font-style: italic; text-decoration: underline; vertical-align: baseline;"&gt;program page&lt;/span&gt;&lt;/a&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;. You can also &lt;/span&gt;&lt;a href="https://docs.google.com/forms/d/e/1FAIpQLSfowlgaSsVDQojZ1JDDhRMfZ5TAFY6do4UPZXqkuToX63K2dQ/viewform" rel="noopener" target="_blank"&gt;&lt;span style="font-style: italic; text-decoration: underline; vertical-align: baseline;"&gt;sign up for our newsletter&lt;/span&gt;&lt;/a&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt; to stay informed about community activities, digital events, special offers, and more.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 18 Jun 2025 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/storage-data-transfer/data-resilience-eons-approach--google-cloud-best-practices/</guid><category>Startups</category><category>Customers</category><category>Storage &amp; Data Transfer</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Automate data resilience at scale with Eon and Google Cloud Backup</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/products/storage-data-transfer/data-resilience-eons-approach--google-cloud-best-practices/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Liore Shai</name><title>Solutions Architect, Eon</title><department></department><company></company></author></item><item><title>Zephr.xyz powers real-time GNSS precision on Android with Google Cloud</title><link>https://cloud.google.com/blog/products/networking/reimagining-gps-zephr-powers-real-time-gnss-precision-on-the-cloud/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We’ve all experienced situations where the little blue dot on our map doesn’t accurately show where you are located. Your rideshare arrives on the wrong side of the street, you miss a turn while driving, or the friend you know that you beat on your morning run has a faster time in their fitness tracking app. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Despite significant advancements in GPS technology, achieving reliable, decimeter-level accuracy on consumer devices remains a formidable challenge. Traditional GPS systems can offer positioning, accurate to a few meters, but only under ideal, open-sky conditions. In the real-world, multipath errors, atmospheric disturbances, and signal blockage can all drastically degrade location accuracy, especially in urban, dense, and indoor environments. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This level of uncertainty not only causes inconvenience, it restricts real-time applications,  such as augmented reality, navigation apps, targeted ads, and even emergency responders. These are just a fraction of the cases where precise positioning is critical for enhancing user experiences and operational effectiveness.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://zephr.xyz" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Zephr.xyz&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; wants to solve challenges like these, and many more. Zephr wants to reimagine GPS for mobile devices, delivering its next-generation GNSS positioning and localization SDK, designed specifically for Android devices and running on Google Cloud. &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;$300 to try Google Cloud networking&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb870d1c610&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Start building for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;http://console.cloud.google.com/freetrial?redirectpath=/products?#networking&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Reimagining GPS for better precision, and better experiences&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;By harnessing Google Cloud’s powerful infrastructure, Zephr seamlessly coordinates raw GNSS measurements from multiple Android smartphones, as well as enhanced atmospheric and orbits data, to generate anonymized corrections across a cooperative network of devices. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This real-time processing dramatically reduces GPS errors, consistently achieving open-sky accuracies below 50 centimeters and significantly enhancing reliability in urban and obstructed scenarios. Across more than 50 tests in a variety of geographies, Zephr has improved the positioning accuracy of smartphones by over 2x.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Zephr efficiently manages vast amounts of location data streams and performs rapid optimizations necessary for real-time corrections and positioning with Google Cloud's scalable and robust solutions, including &lt;/span&gt;&lt;a href="https://cloud.google.com/run"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Run&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://cloud.google.com/storage"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Storage&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, and &lt;/span&gt;&lt;a href="https://cloud.google.com/pubsub"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Pub/Sub&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. Google Cloud’s infrastructure enables low-latency, high-performance computing, ensuring the Zephr SDK meets stringent demands for latency-sensitive applications.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Here is a diagram of how we built it:&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/image1_EKDO8uL.max-1000x1000.jpg"
        
          alt="image1"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Zephr’s Android SDK securely transmits raw GNSS measurements to 5G-compatible API endpoints. Using Cloud Run to scale out data processing and APIs, the SDK generates optimized corrections unique to each device — in real time. In addition, Firebase checks that the appropriate corrections are delivered securely to each specific authenticated client running the Zephr SDK. The Zephr positioning engine then determines a precise location on-device, ensuring both privacy and resilience to network outages, while managing battery usage.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Building location-based solutions for tomorrow&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Zephr’s unique cooperative positioning harnesses network effects — each device contributes to and benefits from collective positioning data, creating resilience and precision previously unattainable on commodity hardware. This approach allows Zephr to provide both single receiver and multi-receiver corrections, depending on the density of devices in a given location. Real-time localization, which underpins Zephy’s AI audio navigation assistant, is critical for enabling next-generation AI devices. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Partnering closely with Google Cloud, has helped Zephr to rapidly scale its backend infrastructure, crucially supporting its ambitious goal of setting a new standard in GNSS accuracy and reliability across diverse use cases globally. Leveraging cloud-powered, cooperative GNSS solutions provides businesses and developers immediate access to unprecedented accuracy, opening new opportunities for innovation.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Discover how Zephr.xyz and Google Cloud can enhance the accuracy and reliability of your location-based services. Learn more at &lt;/span&gt;&lt;a href="http://zephr.xyz" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Zephr.xyz&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 18 Jun 2025 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/networking/reimagining-gps-zephr-powers-real-time-gnss-precision-on-the-cloud/</guid><category>Customers</category><category>Startups</category><category>Networking</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Zephr.xyz powers real-time GNSS precision on Android with Google Cloud</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/products/networking/reimagining-gps-zephr-powers-real-time-gnss-precision-on-the-cloud/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Pramukta Rao</name><title>CTO, Zephr.xyz Inc.</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Sean Gorman</name><title>CEO, Zephr.xyz Inc.</title><department></department><company></company></author></item><item><title>Graduating the Google for Startups Accelerator: AI First in Europe &amp; Israel</title><link>https://cloud.google.com/blog/topics/startups/graduating-ai-first-accelerator-in-europe-and-israel/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Today, we're incredibly proud to announce the graduation of the latest cohort from the &lt;/span&gt;&lt;a href="http://startup.google.com/programs/accelerator/ai-first/europe-israel" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Accelerator: AI First&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; from Europe &amp;amp; Israel! This milestone marks the culmination of an intensive three-months journey for these 14 innovative startups, who've dedicated themselves to growing their businesses and pushing the boundaries of artificial intelligence. The hybrid program offered expert mentorship, robust technical support, and access to a powerful global network, empowering founders to scale their impact. &lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 40px;"&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;“With Google’s support, we brought our AI recruitment platform into its next generation — the most advanced in the world, with a business model built for $7M+ ARR within a year.  Their guidance and exposure to breakthrough models took our tech years ahead.“ - Shira Spetter, CEO, iVERSE&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;With AI projected to contribute a staggering $15.7 trillion to the global economy by 2030 (&lt;/span&gt;&lt;a href="https://www.pwc.com/gx/en/issues/artificial-intelligence/publications/artificial-intelligence-study.html" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;PwC&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;), supporting these AI startups is crucial for accelerating groundbreaking innovations, deploying scalable solutions, and ensuring AI's benefits are widely accessible to businesses and communities worldwide. Because when AI innovation thrives, the world moves forward.&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 40px;"&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;“We were initially cautious about deploying LLMs in production for key functionalities. However, after experiencing Gemini 2.5, we're not just convinced – we're actively integrating it to power exciting new features.” - Maria Fe Paz, CEO and founder of Connect by Circular-Lab.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The cohort celebrated the milestone at &lt;/span&gt;&lt;a href="https://vivatechnology.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Viva Technology&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; in Paris where they presented their companies, met potential venture capitalists and had an intimate fireside chat with Joëlle Barral, Research &amp;amp; Engineering Senior Director at Google DeepMind and Arno Amabile, Advisor to the French President Special Envoy for AI.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Learn more about the graduating startups and their inspiring work:&lt;/strong&gt;&lt;/h3&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/2_BNE1Unf.gif"
        
          alt="[2]"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;ol&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.ambr.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Ambr AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (UK) helps professionals master difficult workplace conversations through realistic Voice AI practice simulations, providing a safe, convenient environment with instant feedback to build crucial communication skills.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.circular-lab.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Connect by Circular-Lab&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (Spain) uses AI/ML to structure and centralize diagnostic data, making it accessible for labs, hospitals, and industry stakeholders.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.folio.build" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Folio&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (Israel) empowers industrial sales and application engineers by turning technical specs, configuration data, and application info into instant answers, recommendations, and agentic workflows, speeding work, cutting errors, and boosting revenue for industrial manufacturers and distributors.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.goodwith.co/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Good With&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (UK) delivers ai-driven financial behaviour analytics for real-time credit risk assessment, enabling lenders to convert binary ‘Yes/No’ decisioning into a 'Safe Journey to Yes' which increases ‘good’ customer acquisition and reduces loss.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.hybr.co.uk" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Hybr&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (UK) is a SaaS enabled lettings platform for letting agents cut workloads by up to 80%, turning leads into lets faster, and building transparency into the rental process.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.i-verse.online" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;iVerse&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (Israel) is an AI talent platform built on 50+ years of occupational psychology — combining real-time behavioral analysis, proprietary evaluation layers, and a scalable model to match top AI talent with top AI opportunities worldwide.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.materialevolution.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Material Evolution&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (UK) is transforming cement with a novel AI-driven tech that uses industrial waste that requires no heat and significantly reduces carbon emissions.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.metsystem.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Metsystem&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (Denmark) develops an AI powered metastasis-targeting platform to predict personalized cancer treatments and help pharmaceutical companies stratify patients for drug trials.  &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://noxon.io/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Noxon&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (Germany) builds wearable Muscle-Computer Interface (MCI) that makes muscle diagnostics and therapies more accessible, user-friendly, and scalable for remote care.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://puntohealth.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Punto Health&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (UK/ Spain) is transforming dementia care with an AI-powered platform that delivers continuous, personalised support for patients and carers, while improving monitoring and coordination for providers.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.shareid.ai" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;ShareID&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (France) enables real-time, privacy-first identity verification without storing personal or biometric data, redefining digital trust.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.tech1m.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Tech1M&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (UK) is an intelligent recruitment engine with AI Agents for sourcing, screening, interviewing and hiring talents anywhere in the world.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://v-art.digital/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;V-Art&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (Ukraine) is a DeepTech startup streamlining IP monetization for brands and AI with a solution to manage and license any digital content at scale.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: decimal; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.whering.co.uk" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Whering&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (UK) is a digital wardrobe &amp;amp; AI styling app that allows users to unlock infinite outfit combinations from the clothes they already own.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We can’t wait to see what comes next for these AI-first solutions and incredible teams driving them. Learn more about Google for Startups Accelerator programs on &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;startup.google.com&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb870482cd0&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;</description><pubDate>Tue, 17 Jun 2025 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/graduating-ai-first-accelerator-in-europe-and-israel/</guid><category>AI &amp; Machine Learning</category><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/1_MRfdJ7k.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Graduating the Google for Startups Accelerator: AI First in Europe &amp; Israel</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/1_MRfdJ7k.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/graduating-ai-first-accelerator-in-europe-and-israel/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Helene Ambiana</name><title>Global Marketing Director, SMB, Startups &amp; Sales Development, Google Cloud</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Noa Havazelet</name><title>Head of Google Accelerator, EMEA</title><department></department><company></company></author></item><item><title>Announcing the first cohort of the Google for Startups Accelerator: AI First UK</title><link>https://cloud.google.com/blog/topics/startups/announcing-the-first-cohort-of-the-google-for-startups-accelerator/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;At Google, we believe in empowering people and founders to use AI to tackle humanity’s biggest challenges. That’s why we’re supporting the next generation of AI leaders through our &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/ai-first/united-kingdom/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Accelerator: AI First programs&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. We &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/topics/startups/announcing-the-2025-google-for-startups-accelerator-ai-first-uk"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;announced&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; the program in January and today, we’re proud to welcome 16 UK-based startups into our accelerator community that are using AI to drive real-world impact.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Out of hundreds of applicants, we've carefully selected these 16 high-potential startups to receive 1:1 guidance and support from Google, each demonstrating a unique vision for leveraging AI to address critical challenges and opportunities. This diverse cohort showcases how AI is being applied across sectors — from early cancer detection and climate resilience, to smarter supply chains and creative content generation. By joining the &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/ai-first/united-kingdom/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Accelerator: AI First UK&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; program, these startups gain access to technical expertise, mentorship, and a global network to help them scale responsibly and sustainably.&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 40px;"&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;“Google for Startups Accelerator: AI First provides an exceptional opportunity for us to enhance our AI expertise, accelerate the development of our data-driven products, and engage meaningfully with potential investors.”&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; – Denise, Williams, Managing Director, &lt;/span&gt;&lt;a href="http://www.dysplasiadx.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Dysplasia Diagnostics.&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/Image_2_Sdzue0U.max-1000x1000.png"
        
          alt="Image 2"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Read more about the selected startups and the founders shaping the future of AI:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.bindbridge.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Bindbridge&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is a generative AI platform that discovers and designs molecular glues for targeted protein degradation in plants.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.buildingatlas.io" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Building Atlas&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Edinburgh) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;uses data and AI to support the decarbonisation of non-domestic buildings by modelling the best retrofit plans for any portfolio size.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.complystream.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Comply Stream&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;helps to streamline financial crime compliance operations for businesses and consumers.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.datawhisper.co.uk" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Datawhisper&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; provides safe and compliant AI Agentic solutions tailored for the fintech and payments industry.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.deducta.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Deducta&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is a data intelligence platform that supports global procurement teams with supply chain insights and efficiencies.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.dysplasiadx.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Dysplasia Diagnostics&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;develops AI-based, non-invasive, and affordable solutions for early cancer detection and treatment monitoring.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://flow.bio" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Flow.bio&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;is an end-to-end cloud platform for running large sequencing pipelines and auto-structuring bio-data for machine learning workflows.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.humbleai.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Humble&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;enables non-technical users to build and share AI-powered apps and workflows, allowing them to automate without writing code.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://immersive-fox.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Immersive Fox&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is an AI studio for creating presenter-led marketing and communication videos directly from text.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.kestrix.io" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Kestrix&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; uses thermal drones and advanced software to map and quantify heat loss from buildings and generate retrofit plans.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.measmerize.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Measmerize&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Birmingham) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;provides sizing advice for fashion e-commerce retailers, enabling brands to increase sales and decrease return rates.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://psi.tech/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;PSi &lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;(London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;uses AI to host large-scale online deliberations, enabling local governments to harness collective intelligence for effective policymaking.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.shareback.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Shareback&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; is an AI platform that allows employees to securely interact with GPT-based assistants trained on company, department, or project-specific data.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.sikoia.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Sikoia&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (London) &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;streamlines customer verification for financial services by consolidating data, automating tasks, and delivering actionable insights.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://www.smallspark.space" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;SmallSpark&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Cardiff)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; enables low power AI at the edge, simplifying the deployment, management, and optimization of ML models on embedded devices.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.source.dev/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Source.dev &lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;(London)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; simplifies the software development lifecycle for smart devices, to help accelerate innovation and streamline software updates.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="padding-left: 40px;"&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;“Through the program, we aim to leverage Google’s expertise and cutting-edge AI infrastructure to supercharge our growth on all fronts.” &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;Lauren Ladd, Founder, &lt;/span&gt;&lt;a href="https://www.shareback.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Shareback&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;These 16 startups reflect the diversity and depth of AI innovation happening across the UK.  Each company will receive  technical mentorship, strategic guidance, and access to strategic connections from Google, and will continue to receive hands-on support via our alumni network after the program wraps in July. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Congratulations to this latest cohort! To learn more about applying for an upcoming Google for Startups program , visit the program page &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/climate-change/europe/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;here&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb86e8ebeb0&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;</description><pubDate>Mon, 28 Apr 2025 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/announcing-the-first-cohort-of-the-google-for-startups-accelerator/</guid><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/Hero_image.gif" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Announcing the first cohort of the Google for Startups Accelerator: AI First UK</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/original_images/Hero_image.gif</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/announcing-the-first-cohort-of-the-google-for-startups-accelerator/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Ulrike Gupta</name><title>Director of Customer Engineering UKI and Sub-Saharan Africa, Google Cloud</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Onajite Emerhor</name><title>Regional Lead Google for Startups Accelerator, Europe</title><department></department><company></company></author></item><item><title>34 gen AI success stories with customers and ISVs</title><link>https://cloud.google.com/blog/topics/partners/real-world-examples-of-how-customers-are-innovating-with-gen-ai/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Like many of you reading this, I fancy myself a builder. I got my first taste of making a computer do something based on code I wrote into a TI-99  console when I was 8 years old and was hooked. In the four decades that have followed, I’ve seen hundreds, maybe even thousands of developers and companies transform as we shifted from the internet to client-server to mobile and to cloud. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;I’ve not seen anything quite as transformative quite as fast as what we’re seeing now, helping companies harness AI to transform their software development, business process, information retrieval, and more. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;As part of our commitment to offering &lt;/span&gt;&lt;a href="https://cloud.google.com/partners/ai"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;the most open and innovative generative AI partner ecosystem&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, we’re lucky enough to work with the most cutting-edge software companies in the world. As we head into &lt;/span&gt;&lt;a href="https://cloud.withgoogle.com/next" rel="noopener" target="_blank"&gt;&lt;span style="vertical-align: baseline;"&gt;Google Cloud Next ‘2&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;5 this week, we thought it might be inspiring to showcase the following 34 use cases illustrating how companies are using AI to transform how they work — moving beyond hype and into production. And if you want even more examples, check out our list of &lt;/span&gt;&lt;a href="https://cloud.google.com/transform/101-real-world-generative-ai-use-cases-from-industry-leaders"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;hundreds of real-world gen AI use cases&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; we’ve helped build with our customers and partners.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Hope to see you at Next!&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/aes?e=13802955"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;AES&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Enabling a massive audit process overhaul with accuracy, speed, and scale with gen AI agents built using Vertex AI and Anthropic’s Claude models.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/blog/topics/financial-services/scaling-fintech-capabilities-globally-with-google-cloud?e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Airwallex&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Detecting and managing fraud in real time in a scalable, always-available environment with Vertex AI, GKE, and GitLab. &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.youtube.com/watch?v=X1_Yr7o1FYQ" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Allegro&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Enabling millions of real-time, personalized conversations with AI-powered omnichannel orchestration with Google Cloud and GrowthLoop.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.youtube.com/watch?v=QR4SqQD5LNw" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Augment Code&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Accelerating AI coding with Google Cloud and NVIDIA and deepening the understanding of enterprise code with &lt;/span&gt;&lt;a href="https://cloud.google.com/customers/augment"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Vertex AI and Anthropic’s Claude&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/brainlogic?e=13802955"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;BrainLogic&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Improving digital commerce experiences with Zapia, a uniquely Latin American personal AI assistant, built with Vertex AI and Anthropic’s Claude models.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://youtu.be/ugEDUtpK1Bc" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Bud Financial&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Creating new ways of working and new operating models for financial institutions with Vertex AI and Astra DB from DataStax.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/capital-energy?hl=en&amp;amp;e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Capital Energy&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Taking sustainable energy to new heights with secure cloud technologies, AI, and data platforms with Vertex AI and Fortinet.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://youtu.be/I9cNiK-lXv4" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;CERC&lt;/span&gt;&lt;/a&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;- Processing millions of credit data forecasts in minutes with near real-time insights and reduced costs with Databricks on Google Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/copel?hl=en&amp;amp;e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Copel&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Providing real-time insights with a natural language AI agent that interacts directly with SAP ERP using Google Cloud Cortex Framework.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://services.google.com/fh/files/misc/google_cox_two_m_with_thoughtspot_case_study.pdf" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cox 2M&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Reducing time to insights for non-technical users by 88% with natural-language chat and gen AI with Gemini and ThoughtSpot.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/fenc?hl=id"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Far Eastern New Century&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Streamlining cross-border operations with generative AI with Google Cloud VMware Engine and Microfusion.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://youtu.be/mrO6hnDAXlk" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Flockx&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;Combating loneliness by connecting individuals with AI Agent communities via their Collaboration Layer built with Google Cloud and Elastic&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;. &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/hdfc-ergo"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;HDFC ERGO &lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;- Pioneering insurance superapps for India with personalized AI-driven services at scale with Vertex AI, Niveus Solutions, and Lumiq.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/hunkemoller"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Hunkemöller&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Building advanced AI solutions and a game-changing customer data platform for an SAP shop with Vertex AI and Devoteam G Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/israel-antiquities-authority?hl=en&amp;amp;e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Israel Antiquities Authority&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Preserving the past for future generations with modern research models with Gemini, NetApp, VMWare, and CommIT.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/blog/products/containers-kubernetes/livex-ai-build-ai-agents-on-gke-infrastructure?e=13802955"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;LiveX AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Reducing customer support costs by up to 85% with AI agents trained and served on Google Kubernetes Engine and NVIDIA AI.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://services.google.com/fh/files/misc/google_loreal_with_langchain_case_study.pdf" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;L’Oréal&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Delivering a flexible and scalable set of declarative generative AI APIs,  in 3 months, for secure access to gen AI for all with Gemini and LangChain.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/maqqie?e=48754805&amp;amp;hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Maqqie&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Transforming the future of HR recruitment and driving increased revenue and retention with Vertex AI and Rappit.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://youtu.be/N3JZT73uZTg" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Mercari&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Dramatically improving the user experience for both buyers and sellers on its ecommerce marketplace with Vertex AI and Weights &amp;amp; Biases.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/naologic?e=48754805&amp;amp;hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Naologic&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Democratizing access to AI for all companies—regardless of IT expertise—with Gemini, Google Cloud for Startups Cloud Program, and MongoDB.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/intl/es-419/notco?hl=es-419&amp;amp;e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;NotCo&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Transforming its operations with Google Cloud AI agents and Google Cloud Cortex Framework with SAP and Eleven Solutions. &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/palo-alto-networks?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Palo Alto Networks&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Speeding software development with Vertex AI and Anthropic’s Claude and protecting cybersecurity with NVIDIA and Google Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/quora?hl=en&amp;amp;e=13802955"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Quora &lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;- Powering millions of human-like daily interactions through dynamic gen AI chat experiences with Gemini, Vertex AI, and Anthropic’s Claude.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://youtu.be/HYgw7hFyqtw" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Rapid7&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Improving customer experiences with efficient cybersecurity customer support, at lightning speed, with Gemini and Ask AI.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/replit?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Replit &lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;- Making software creation accessible and efficient for everyone with Gemini and Anthropic’s Claude.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://youtu.be/urdwQxE5t-I" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Stax AI&lt;/span&gt;&lt;/a&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;- Automating manual processes and transforming massive volumes of trust accounting data in minutes with Google Cloud and MongoDB.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/studiosus?hl=en&amp;amp;e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Studiosus Reisen&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Embracing the future of travel with real-time customer bookings with Vertex AI, SAP, happtiq, and Solid Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/sumitomo-rubber?e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Sumitomo Rubber Industries&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Accelerating software development time and delivering innovative products faster with Gemini and Kyocera.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/suzano-genai-cortex?hl=en&amp;amp;e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Suzano&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Enhancing cloud-based data sources for sustainable materials management on SAP with Gemini, Google Cloud Cortex Framework, and Sauter.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/customers/udn"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;UDN Group&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Improving clickthrough rates, enhancing operational efficiency, and providing highly reliable digital media services with Vertex AI and Merkle.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://cloud.google.com/blog/topics/partners/improving-telecom-customer-satisfaction-via-data"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Vodafone &lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;- Providing clear customer insights and actionable decision intelligence with a 360-customer view for improved service experiences with Google Cloud and Quantexa.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.youtube.com/watch?v=Sdcc-Bss-_4" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Wayfair&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Driving AI innovation in e-commerce with curated options that elevate online shopping experiences using Google Cloud and Snorkel&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://youtu.be/zdoKmMLSGdg" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;WealthAPI &lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;- Delivering next-gen financial insights in real time to millions of customers for personalized guidance at scale with Gemini and DataStax Astra DB.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.youtube.com/watch?v=8Zncj0ezljo" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Writer&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; - Building and training over 17 large language models (LLMs) that scale up to 70 billion parameters for custom AI models with Google Cloud and NVIDIA.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Learn more at &lt;/span&gt;&lt;a href="https://cloud.withgoogle.com/next/25" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google Cloud Next ‘25&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb868713e50&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;These partners are driving a wave of generative AI innovation, building next-generation applications and models, and integrating their solutions with powerful &lt;/span&gt;&lt;a href="https://gemini.google.com/corp/app" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Gemini&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://cloud.google.com/vertex-ai?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Vertex AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, and &lt;/span&gt;&lt;a href="https://cloud.google.com/bigquery?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;BigQuery&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; features. These advancements are helping customers realize the value of generative AI faster than ever before. &lt;/span&gt;&lt;a href="https://cloud.google.com/partners/ai"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Explore more stories&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to learn how our open partner ecosystem is supporting customer gen AI deployments, and discover how our partners simplify the discovery, procurement, and deployment of groundbreaking generative AI solutions in the &lt;/span&gt;&lt;a href="https://console.cloud.google.com/marketplace/browse?filter=category:generative-ai"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google Cloud Marketplace&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 09 Apr 2025 12:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/partners/real-world-examples-of-how-customers-are-innovating-with-gen-ai/</guid><category>AI &amp; Machine Learning</category><category>Google Cloud Next</category><category>Startups</category><category>Partners</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/031425b_HF1132_GC_Graphic_StephenOrban_Blog_.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>34 gen AI success stories with customers and ISVs</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/031425b_HF1132_GC_Graphic_StephenOrban_Blog_.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/partners/real-world-examples-of-how-customers-are-innovating-with-gen-ai/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Stephen Orban</name><title>VP, Migrations, ISVs, and Marketplace</title><department></department><company></company></author></item><item><title>Global startups are building the future of AI on Google Cloud</title><link>https://cloud.google.com/blog/topics/startups/why-global-startups-are-gathering-at-google-cloud-next25/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The most exciting startups in the world are in Las Vegas this week, as &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/topics/google-cloud-next/welcome-to-google-cloud-next25"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google Cloud Next kicks off&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; with a major focus on how AI and cloud are powering the next great wave of innovation. Our &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/products/compute/whats-new-with-ai-hypercomputer"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;AI-optimized infrastructure&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, our &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/gemini-2-5-pro-flash-on-vertex-ai"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;broad AI model offerings&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, and our &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/topics/startups/founders-share-five-takeaways-from-the-google-cloud-startup-summit"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;deep relationships with founders&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; around the globe have put Google Cloud at the center of today’s AI startup movement — in fact, over the past two years, more than &lt;/span&gt;&lt;a href="https://cloud.google.com/startup?e=48754805&amp;amp;hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;60% of the world’s generative AI startups&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; have been building on Google Cloud.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;AI research labs and model builders like Anthropic, Cohere, Magic, Mistral, and AI21 Labs are great examples. Anthropic has been using Google Cloud infrastructure to support model training and inference for several years. Google Cloud has also become an increasingly important route for organizations &lt;/span&gt;&lt;a href="https://cloud.google.com/products/model-garden/claude"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;to access Anthropic’s models&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. In fact, more than 4,000 companies have started using Claude models via Vertex AI thus far. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This week at Google Cloud Next, we’re highlighting the progress that even more global startups are making toward building AI systems and applications that will create real value for people and businesses. We’ll share some of the new startups who have chosen Google Cloud as their key technology partner; new industry partnerships and resources to make it easier for early-stage startups to build and go to market on Google Cloud; new companies joining our global Accelerator programs; and more ways that &lt;/span&gt;&lt;a href="https://cloud.google.com/startup"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;startups are achieving success with Google Cloud&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb842e71550&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Supporting more AI startups on Google Cloud&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This week, we’re announcing an exciting group of startups who are launching new or expanded work with Google Cloud. These companies span a broad swath of use cases, products, and industries, including consumer apps used by millions of people, enterprise use cases like search and data analytics and storage, developer coding assistance, and solutions for unique vertical challenges. These include:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.augmentcode.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Augment Code&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;is running its AI coding assistant, which specializes in helping developers navigate and contribute to production-grade codebases, on Google Cloud and is using Anthropic’s Claude models through Vertex AI.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.autoscience.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Autoscience&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;, &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;a startup building AI agents to aid in scientific research, is using Google Cloud infrastructure and resources through our Startup Program as it begins to build and market its products.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://anysphere.inc/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Anysphere&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, the startup behind the AI-powered code editor Cursor, is now using Anthropic's Claude models on Google Cloud to scale its AI coding assistant to more developers.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://bigsur.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Big Sur AI&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; now offers its AI-powered platform for retail and e-commerce customers on Google Cloud Marketplace.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="http://captions.ai" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Captions&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; recently released their integration with Veo 2, making it easy for users to add B-roll content to their talking videos.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="http://eon.io" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Eon.io&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;, &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;a startup focused on enterprise backup and recovery, has begun working with Google Cloud through our partnership with Lightspeed Capital; it’s now adding new AI search capabilities to its platform.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://fal.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;fal&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is a generative media platform for developers, accelerating the inference of gen AI models to improve the speed in which content is generated. The fal team is working with Google Cloud to leverage its Veo 2 technology to help its users create videos with realistic motion and high-quality output. &lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.hebbia.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Hebbia&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;has integrated Gemini models into its Matrix platform, which helps organizations build AI agents capable of working across all of their data.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://magic.dev/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Magic&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, which is building frontier-scale models capable of understanding very large codebases, is growing its use of GPUs on Google Cloud as it accelerates research and model training.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.photoroom.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Photoroom&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, a French startup that provides gen AI photo-editing and design capabilities to consumers and businesses, has used Veo 2 and Imagen 3 to improve the quality of its offering and accelerate its development. &lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.physicalintelligence.company/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Physical Intelligence&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; recently partnered with Google Cloud to support model development, using our secure and scalable AI infrastructure.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.spot.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Spot A&lt;/strong&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;I&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is a video AI startup that transforms passive security cameras into AI Agents for improving security, safety, and operations in industries like manufacturing, retail, hospitals, construction and more. They're using Google Cloud to power their new interface for building custom video AI agents, called Iris.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.story.foundation/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Story&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;is working with Google Cloud’s web3 services and infrastructure to bring new capabilities to developers on its platform.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.studyhall.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Studyhall AI&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;, &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;which graduated from our UK Growth Accelerator program,&lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;has built a mobile application that uses Gemini models to help coach students on reading, writing, and exam prep.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://ssi.inc/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Safe Superintelligence&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is partnering with Google Cloud to use TPUs to accelerate its research and development efforts toward building a safe, superintelligent AI.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.synthesia.io/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Synthesia&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, a startup that operates an AI video platform, is using Google Cloud to build the next generation of advanced AI models that replicate realistic human likenesses and voice; the startup is also using Gemini models to handle complex vision and language-based tasks with speed and accuracy.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://ubiehealth.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Ubie&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;, &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;a healthcare-focused startup founded in Japan, is using Gemini models via Google Cloud to power its physician assistance tool.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.udio.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Udio&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;is using TPUs to help train its models for music generation and serve its rapidly growing customer base.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://ufonia.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Ufonia&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;helps physicians deliver care by using AI to automate clinical consultations with patients. It is using Google Cloud’s full AI stack to power its platform, including infrastructure, models on Vertex AI Model Garden, BigQuery, and GKE.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://wagestream.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Wagestream&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, a financial services startup, is using Gemini models to handle more than 80% of its internal customer inquiries, including questions about pay dates, balances, and more.&lt;/span&gt;&lt;/li&gt;
&lt;li role="presentation"&gt;&lt;a href="https://www.wondercraft.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Wondercraft&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, an AI-powered content studio that helps users create engaging audio ads, podcasts and more, is leveraging Gemini models for some of its core functionalities and will soon release a Veo 2 integration.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;New partnerships with accelerators and VCs&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We’re also expanding our work with leading venture capital firms and accelerators, building on our existing relationships with firms like &lt;/span&gt;&lt;a href="https://www.axios.com/2024/10/09/google-cloud-deal-sequoia-capital" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Sequoia&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and &lt;/span&gt;&lt;a href="https://techcrunch.com/2024/08/01/google-cloud-now-has-a-dedicated-cluster-of-nvidia-gpus-for-y-combinator-startups/?guccounter=1&amp;amp;guce_referrer=aHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS8&amp;amp;guce_referrer_sig=AQAAAHPea9cAO3Q8Ad-PkmrMds3D5IOsJKg7DL-9LoSD8oR4erPvKBLlE9H4UBvItjBiEVQ02tUi0s6s1eyLg7K4f6gHSLIzdcNq845Lw5diZm__19vTkyB95LcKvXe9Ik_tztT5-USm-55RAYpJxAMGG6aQ45hFEGNSOpshBhnRn2iZ" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;YCombinator&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. These partnerships help provide technology like TPUs and Gemini models to fast-growing startup companies who are building with AI.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Today, we’re announcing a significant new partnership with the leading venture capital firm &lt;/span&gt;&lt;a href="https://lsvp.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Lightspeed&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, which will make it easier for Lightspeed-backed startups to access technology and resources through the Google for Startups Cloud Program. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This includes upwards of $150,000 in cloud credits for Lightspeed’s AI portfolio companies, on top of existing credits available to all qualified startups through the Google for Startups Cloud Program. These credits help ensure participating startups will have more reliable access to cloud infrastructure and AI technology as they scale. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Lightspeed portfolio companies have already been using Google Cloud infrastructure, AI, and data tools, including Augment, Contextual, Grafana, and Mistral.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;New resources to help startups build and go to market more quickly&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Today we’re announcing new resources through the &lt;/span&gt;&lt;a href="https://cloud.google.com/startup?e=48754805"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Cloud Program&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; that will help startups access our infrastructure and technology more quickly. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Our &lt;/span&gt;&lt;a href="https://cloud.google.com/programs/startups/isv-startup-springboard?hl=en"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Springboard&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;program, which helps startup cust&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;omers bring products to market on Google Cloud, has grown significantly. In the past year, startup customers have launched many new products on Google Cloud Marketplace through this program, including &lt;/span&gt;&lt;a href="https://www.ask-ai.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Ask-AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://gocascade.ai/platform/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cascade AI,&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;a href="https://www.cimulate.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cimulate&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="http://ema.co/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Ema.co&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://fireworks.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Fireworks AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://www.mendel.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Mendel&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;,&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;a href="https://predibase.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Predibase&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://www.resemble.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Resemble AI,&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;a href="https://www.tektonic.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Tektonic AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, and &lt;/span&gt;&lt;a href="https://www.vijil.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Vijil&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We are also announcing our &lt;/span&gt;&lt;a href="https://cloud.google.com/startup/perks"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Startup Perks program&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, which provides early stage startups with preferred access to solutions from our partners like Datadog, Elastic, ElevenLabs, GitLab, MongoDB, NVIDIA, Weights &amp;amp; Biases, and more. Exclusive discounts and benefits will be added on a regular basis, helping startups build and grow with the best of the Google Cloud ecosystem. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Additionally, Google for Startups Cloud Program members will receive an additional $10,000 in credits to use exclusively on Partner Models through Vertex AI Model Garden, so they can quickly start using both Gemini models and models from partners like Anthropic and Meta.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We’re proud that 97% of companies who join our Google for Startups Cloud Program choose to stay with Google Cloud after their program credits expire, underscoring the value that our products are providing.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;New accelerator cohort companies&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Google Cloud currently offers a series of Accelerator programs for startups around the world. Today, we’re announcing the Spring 2025 cohort of companies in &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/cloud-ai/north-america/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Cloud AI Accelerator&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; for startups based in North America:&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/Google_for_Startups_Cloud_AI_Accelerator_Brady_Bunch_1200x600.jpg"
        
          alt="Google for Startups Cloud AI Accelerator Brady Bunch 1200x600"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Future of AI: Perspectives for Startups&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This year, we also launched our first-ever “&lt;/span&gt;&lt;a href="https://cloud.google.com/resources/content/future-of-ai-report?utm_source=cgc-blog&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY25-Q1-NORTHAM-SMB31054-website-dl-AIThoughtLeader-52420&amp;amp;utm_content=launch-blog&amp;amp;utm_term=-&amp;amp;hl=en"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Future of AI: Perspectives for Startups 2025&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;” report. To gain a deeper understanding of where AI is headed, we gathered perspectives from 23 industry leaders and investors on their expectations for AI and what it means for startups in 2025 and beyond.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;These experts weighed in on topics like the role of AI agents, the future of AI infrastructure, the areas startup investors are prioritizing, and much more. I encourage anyone involved in or interested in the AI startup world to take a look.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;It’s this kind of fresh thinking and new technology that’s making Google Cloud a home for the startup community, and AI startups in particular — and we see Next ‘25 as an important extension of this growing ecosystem. With more that 60% of gen AI startups building on our platform today, we want to be  a key partner for their innovation. This commitment to startups is ongoing, and will continue to grow with new resources, accelerators, and other programs that help them build and scale their businesses. Please be sure to visit the Startup Hub on the Mandalay Bay Expo Floor at Next ‘25 to learn more.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 09 Apr 2025 12:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/why-global-startups-are-gathering-at-google-cloud-next25/</guid><category>AI &amp; Machine Learning</category><category>Google Cloud Next</category><category>Partners</category><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/Startups_on_Google_Cloud.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Global startups are building the future of AI on Google Cloud</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/Startups_on_Google_Cloud.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/why-global-startups-are-gathering-at-google-cloud-next25/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Darren Mowry</name><title>VP, Global Startups, Google Cloud</title><department></department><company></company></author></item><item><title>Rice University and Google Public Sector partner to build an innovation hub in Texas</title><link>https://cloud.google.com/blog/topics/public-sector/rice-university-and-google-public-sector-partner-to-build-an-innovation-hub-in-texas/</link><description>&lt;div class="block-paragraph"&gt;&lt;p data-block-key="2vi6u"&gt;&lt;/p&gt;&lt;p data-block-key="feg5i"&gt;&lt;a href="https://www.rice.edu/" target="_blank"&gt;Rice University&lt;/a&gt; and &lt;a href="https://publicsector.google/ai/" target="_blank"&gt;Google Public Sector&lt;/a&gt; are partnering to launch the &lt;a href="https://nexus.rice.edu/work-with-us" target="_blank"&gt;Rice AI Venture Accelerator (RAVA)&lt;/a&gt;, designed to drive early-stage AI innovation and commercialization. This &lt;a href="https://news.rice.edu/news/2025/rice-launches-ai-venture-accelerator-fuel-industry-innovation-collaboration-google-public" target="_blank"&gt;collaboration&lt;/a&gt; enables RAVA to connect AI-first startups with leading enterprises in healthcare, energy, transportation, and the public sector, aiming to drive AI-powered solutions to pressing industry challenges.&lt;/p&gt;&lt;p data-block-key="74occ"&gt;In an increasingly AI-driven world, the RAVA team acknowledges the critical need to balance speed of innovation and security. RAVA aims to create an ecosystem where founders can be both bold and responsible by bringing the simplicity, security, and intelligence of Google Cloud's information approach to their startup.&lt;/p&gt;&lt;p data-block-key="bl8ri"&gt;Through this collaboration, participating startups will have direct access to Google Cloud’s AI experts, cloud computing, and sandbox services. Google Cloud will provide a full-stack AI, data, and security sandbox environment that will enable AI-first startups to rapidly prototype, scale faster, and save money.&lt;/p&gt;&lt;p data-block-key="7b2kp"&gt;The AI-optimized sandbox will include the following capabilities:&lt;/p&gt;&lt;ul&gt;&lt;li data-block-key="49jr5"&gt;AI&lt;ul&gt;&lt;li data-block-key="ec4ul"&gt;Automated provisioning and management of environments tailored to industries including healthcare, energy, transportation and public sector. These environments will include connections to Google Cloud’s differentiated data sets like &lt;a href="https://deepmind.google/technologies/alphafold/" target="_blank"&gt;AlphaFold&lt;/a&gt; and access to fully managed services like &lt;a href="https://cloud.google.com/healthcare?e=48754805&amp;amp;hl=en"&gt;Healthcare Data Engine&lt;/a&gt;, &lt;a href="https://earthengine.google.com/" target="_blank"&gt;Google Earth Engine&lt;/a&gt; and &lt;a href="https://www.google.com/maps/@27.503726,-82.6140519,12z?entry=ttu&amp;amp;g_ep=EgoyMDI1MDMxOS4yIKXMDSoASAFQAw%3D%3D" target="_blank"&gt;Google Maps&lt;/a&gt;.&lt;/li&gt;&lt;li data-block-key="bskro"&gt;AI-infused accelerators, including Graphical Process Units (&lt;a href="https://cloud.google.com/gpu?e=48754805&amp;amp;hl=en"&gt;GPUs&lt;/a&gt;) and Google Cloud’s custom-design Arm-based processors (&lt;a href="https://cloud.google.com/blog/products/compute/introducing-googles-new-arm-based-cpu?e=48754805"&gt;Axion&lt;/a&gt;) and Tensor Processing Units (&lt;a href="https://cloud.google.com/tpu?e=48754805&amp;amp;hl=en"&gt;TPUs)&lt;/a&gt; for analytics, information retrieval, and ML training&lt;/li&gt;&lt;li data-block-key="4hlv0"&gt;Multi-agentic AI framework and a unified development platform via &lt;a href="https://cloud.google.com/vertex-ai?e=48754805&amp;amp;hl=en"&gt;Google Vertex AI Platform&lt;/a&gt; which includes &lt;a href="https://cloud.google.com/products/agent-builder?e=48754805&amp;amp;hl=en"&gt;Agent Builder&lt;/a&gt; and 160+ first-party (Gemini, Imagen 3), third-party, and open (&lt;a href="https://ai.google.dev/gemma" target="_blank"&gt;Gemma&lt;/a&gt;) foundation models.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li data-block-key="6iu7l"&gt;Data &amp;amp; Analytics&lt;ul&gt;&lt;li data-block-key="1rs6o"&gt;Modernized API management via &lt;a href="https://cloud.google.com/apigee"&gt;Apigee&lt;/a&gt; to build, manage, and secure APIs—for any use case, environment, or scale.&lt;/li&gt;&lt;li data-block-key="1i0s6"&gt;Business and embedded analytics via &lt;a href="https://cloud.google.com/looker?e=48754805&amp;amp;hl=en"&gt;Looker&lt;/a&gt; to explore and share insights in real time as well as access to hundreds of cross-industry &lt;a href="https://cloud.google.com/bigquery/public-data"&gt;public datasets&lt;/a&gt; via &lt;a href="https://cloud.google.com/bigquery/public-data"&gt;BigQuery&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li data-block-key="bbqkn"&gt;Security&lt;ul&gt;&lt;li data-block-key="7l9d5"&gt;The industry’s first multi-cloud security solution — &lt;a href="https://cloud.google.com/security/products/security-command-center?e=48754805&amp;amp;hl=en"&gt;Google Security Command Center&lt;/a&gt;, including &lt;a href="https://cloud.google.com/security-command-center/docs/get-started-model-armor"&gt;Model Armor&lt;/a&gt;, — as well as &lt;a href="https://cloud.google.com/security/products/sensitive-data-protection?e=48754805&amp;amp;hl=en"&gt;Sensitive Data Protection&lt;/a&gt; to protect LLM models and data sources against unauthorized exposure, prompt injections, and jailbreak attacks.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p data-block-key="4bau3"&gt;Google Public Sector will also provide dedicated training to RAVA startups and supporting teams to maximize their AI literacy and industry adoption.&lt;/p&gt;&lt;p data-block-key="7g9j2"&gt;“We are thrilled to announce the launch of the Rice AI Venture Accelerator in partnership with Google Public Sector,” Rice President Reginald DesRoches said. “This collaboration builds on Rice’s decades-long history of innovation and aligns perfectly with our mission to transform breakthrough research into real-world impact. Through RAVA, we are creating an ecosystem where industry leaders can access the next generation of AI-driven solutions.”&lt;/p&gt;&lt;p data-block-key="b364b"&gt;“Google Public Sector is excited to partner with RAVA to build an AI Innovation Hub that will enable startups to accelerate innovation and solve the most complex challenges across different industries. Through our collaboration, we are hoping to help startups to do more with less and to effectively adapt to rapidly changing environments,” said Reymund Dumlao, Google Public Sector Director of State &amp;amp; Local Government and Education&lt;/p&gt;&lt;p data-block-key="aik9a"&gt;For more information about RAVA, visit &lt;a href="https://nexus.rice.edu/rava" target="_blank"&gt;https://nexus.rice.edu/rava&lt;/a&gt;.&lt;/p&gt;&lt;p data-block-key="5iu7u"&gt;Discover Google Cloud’s latest groundbreaking technologies at &lt;a href="https://cloud.withgoogle.com/next/25" target="_blank"&gt;Google Cloud Next 2025&lt;/a&gt; in Las Vegas, April 9-11.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Tue, 01 Apr 2025 13:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/public-sector/rice-university-and-google-public-sector-partner-to-build-an-innovation-hub-in-texas/</guid><category>Startups</category><category>Public Sector</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Rice University and Google Public Sector partner to build an innovation hub in Texas</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/public-sector/rice-university-and-google-public-sector-partner-to-build-an-innovation-hub-in-texas/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Charlene Gorman</name><title>Southwest Manager, State &amp; Local Government and Education</title><department></department><company></company></author></item><item><title>Meet the 15 AI startups selected for Google for Startups Cloud AI Accelerator</title><link>https://cloud.google.com/blog/topics/startups/new-startups-join-google-ai-accelerator/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Startups focused on AI are influencing so many areas of our lives. They’re defining the future of education, advancing healthcare innovation, reinventing collaboration and more.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To help AI-focused startups scale quickly and build responsibly, we’re hosting the &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/cloud-ai/north-america/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Cloud AI Accelerator&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. This program builds on the success of our recent &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/ai-first/north-america/" rel="noopener" target="_blank"&gt;&lt;span style="vertical-align: baseline;"&gt;AI First accelerators&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and targets startups building AI solutions based in the U.S. and Canada. This is the first of several AI-focused programs we'll offer throughout the year across the US, Canada, Europe, India and Brazil.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;After a rigorous selection process, we've selected a cohort of dynamic companies leveraging AI to address a wide range of real-world challenges. Meet the startups: &lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="http://tryalma.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Alma&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Palo Alto, CA):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Simplifies US immigration for global talent.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.asepha.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Asepha &lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;(Toronto, ON):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Develops fully autonomous AI pharmacists.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://camb.ai" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;CAMB.AI&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Wilmington, DE):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Enables multilingual storytelling with AI.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cerebraai.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;CerebraAI &lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;(Palo-Alto, CA):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Detects strokes rapidly using AI-powered non-contrast CT scan analysis.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.creatiai.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Creati AI&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (San Jose, CA):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Generates usable AI videos using just elements.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://finnt.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Finnt&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Miami, FL):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Automates solutions for corporate finance teams.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.hydrox.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;HydroX AI&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (San Jose, CA):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Automates generative AI risk and compliance.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://instalily.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Instalily&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (New York, NY):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Automates B2B workflows using AI agents.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://instreamatic.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Instreamatic&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Boca Raton, FL):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Creates personalized video/audio ad variations.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.kahunalabs.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Kahuna Labs&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (San Jose, CA):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Provides comprehensive technical product support.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.lately.ai/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Lately&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Stone Ridge, NY):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Manages social media with AI, boosting ROI.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://multimodal.dev" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Multimodal&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (New York, NY):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Automates financial services workflows with Agentic AI.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://simular.ai" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Simular&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Palo Alto, CA):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Creates personal AI assistants for computers.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://starcloud.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Starcloud&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (Redmond, WA):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Provides data centers in space.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://vody.com" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Vody&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (New York, NY):&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Builds AI models for enhanced retail engagement.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The equity-free program kicks off at &lt;/span&gt;&lt;a href="https://cloud.withgoogle.com/next" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Next 2025&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; where the cohort will pitch their company  on stage in preparation for a high profile Demo Day in June for potential partners, customers and investors. Startups will then receive&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; 10 weeks of hands-on mentorship and technical support focused on using AI in their core service or product. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;These startups will collaborate with a cohort of peer founders and engage with leaders across Google. The curriculum will give founders access to the latest Google AI tools, including &lt;/span&gt;&lt;a href="https://cloud.google.com/vertex-ai"&gt;&lt;span style="vertical-align: baseline;"&gt;Vertex AI&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, &lt;/span&gt;&lt;a href="https://deepmind.google/technologies/gemini/" rel="noopener" target="_blank"&gt;&lt;span style="vertical-align: baseline;"&gt;Gemini&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and Agentspace, and will also include workshops on infrastructure, user experience (UX),  growth, sales, leadership and more.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;After graduation, startups join the active Google for Startups Accelerator community, where they receive ongoing support, and have the opportunity to build lasting connections with like-minded founders, mentors and investors.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We are honored to partner with this cohort of companies through this Accelerator and beyond. &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/cloud-ai/north-america/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Register your interest&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to get updates on the program, and join us in celebrating!&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 27 Mar 2025 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/new-startups-join-google-ai-accelerator/</guid><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/GFSA__Cloud_AI_Brady_Bunch_2436x1200.max-600x600.png" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Meet the 15 AI startups selected for Google for Startups Cloud AI Accelerator</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/GFSA__Cloud_AI_Brady_Bunch_2436x1200.max-600x600.png</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/new-startups-join-google-ai-accelerator/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Darren Mowry</name><title>VP, Global Startups, Google Cloud</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Matt Ridenour</name><title>Head of US Accelerator &amp; Startup Ecosystem, Google</title><department></department><company></company></author></item><item><title>Announcing the 2025 Google for Startups Accelerator: AI First UK</title><link>https://cloud.google.com/blog/topics/startups/announcing-the-2025-google-for-startups-accelerator-ai-first-uk/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;According to the &lt;/span&gt;&lt;a href="https://www.gov.uk/government/publications/artificial-intelligence-sector-study-2023/artificial-intelligence-sector-study-2023" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;UK Department for Science, Innovation &amp;amp; Technology&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, the UK’s AI sector is rapidly expanding, with over 3,000 AI companies generating more than £10 billion in revenues, employing over 60,000 people, and contributing £5.8 billion in Gross Value Added (GVA). &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Google is committed to unlocking AI's potential in the UK through initiatives that advance research, support small businesses, and foster the development of sustainable technologies. We believe that innovation can come from anywhere and we are committed to fostering it. That’s why we’re thrilled to announce the &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/ai-first/europe/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Accelerator: AI First&lt;/strong&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;program&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. This 12-week, equity-free accelerator is designed to propel the growth of early-stage UK AI startups through expert mentorship, tailored workshops, and access to Google resources.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This program is specifically designed to enable emerging AI startups with the comprehensive support they need to thrive and achieve long-term success.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb870dcdb50&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Google for Startups Accelerator: AI First &lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The Accelerator: AI First program  is tailored for seed to Series A UK-based startups building solutions with AI at their core. This program offers a unique blend of:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Expert mentorship:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Guidance from experienced Google and industry mentors with expertise in areas like AI product development, go-to-market strategy, and fundraising.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Tailored workshops:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Deep dives into critical AI topics, including AI ethics, responsible AI development, scaling AI technologies, growth, and crafting effective fundraising pitches.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Technical support:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Access to Google Cloud credits (upon eligibility) and technical expertise to help scale AI solutions.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Networking opportunities:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Connections with a curated network of investors, potential partners, and industry leaders to foster growth and innovation.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Hear from our alumni&lt;/strong&gt;&lt;/h3&gt;&lt;/div&gt;
&lt;div class="block-image_carousel"&gt;


&lt;div class="h-c-page article-module"&gt;
  &lt;div class="article-module glue-pagination h-c-carousel h-c-carousel--simple h-c-carousel--dark ng-cloak" data-glue-pagination-config="{cyclical: true}"&gt;

    &lt;div class="h-c-carousel__wrap"&gt;
      &lt;ul class="glue-carousel ng-cloak" data-glue-carousel-options="{pointerTypes: ['touch', 'mouse'], jump: true}"&gt;

        
          &lt;li class="h-c-carousel__item article-carousel__slide"&gt;
            &lt;figure&gt;
              
                
                  
                  &lt;div class="article-carousel__slide-img" style="background-image: url(https://storage.googleapis.com/gweb-cloudblog-publish/images/2_Harry_Slagel_.max-2000x2000.jpg);"&gt;&lt;span class="h-u-visually-hidden"&gt;[2] Harry Slagel&lt;/span&gt;&lt;/div&gt;
                
              

              
                &lt;figcaption class="article-carousel__caption h-c-copy  h-u-mt-std"&gt;&lt;p data-block-key="5ebv6"&gt;Harry Slagel (cofounder &amp;amp; CEO) and Lucy Adams (cofounder &amp;amp; COO) of &lt;a href="https://www.martee.ai/"&gt;Martee AI&lt;/a&gt; share: "The Google AI First Accelerator has been a huge help for us at Martee AI. It gave us the chance to step back from the day-to-day and really focus on how to scale the business. The program has been a key part of our growth as founders and for Martee’s future."&lt;/p&gt;&lt;/figcaption&gt;
              
            &lt;/figure&gt;
          &lt;/li&gt;
        
          &lt;li class="h-c-carousel__item article-carousel__slide"&gt;
            &lt;figure&gt;
              
                
                  
                  &lt;div class="article-carousel__slide-img" style="background-image: url(https://storage.googleapis.com/gweb-cloudblog-publish/images/3_Ayan_Mohamed.max-2000x2000.jpg);"&gt;&lt;span class="h-u-visually-hidden"&gt;[3] Ayan Mohamed&lt;/span&gt;&lt;/div&gt;
                
              

              
                &lt;figcaption class="article-carousel__caption h-c-copy  h-u-mt-std"&gt;&lt;p data-block-key="0w6te"&gt;Ayan Mohamed, founder &amp;amp; CEO of &lt;a href="https://www.digitechoasis.net/"&gt;Digitech Oasis&lt;/a&gt; shares: "This experience with the Google for Startups Accelerator has been transformative, equipping us with the tools, knowledge, and connections to drive our company's growth and innovation in the AI space."&lt;/p&gt;&lt;/figcaption&gt;
              
            &lt;/figure&gt;
          &lt;/li&gt;
        
          &lt;li class="h-c-carousel__item article-carousel__slide"&gt;
            &lt;figure&gt;
              
                
                  
                  &lt;div class="article-carousel__slide-img" style="background-image: url(https://storage.googleapis.com/gweb-cloudblog-publish/images/4_Adrian_de_Pedro.max-2000x2000.jpg);"&gt;&lt;span class="h-u-visually-hidden"&gt;[4] Adrian de Pedro&lt;/span&gt;&lt;/div&gt;
                
              

              
                &lt;figcaption class="article-carousel__caption h-c-copy  h-u-mt-std"&gt;&lt;p data-block-key="0w6te"&gt;Adrián de Pedro, CEO of &lt;a href="https://www.shakersworks.com/empresa?utm_campaign=BRAND"&gt;Shakers&lt;/a&gt; benefited from leveraging Google Cloud Platform (GCP) and cutting-edge technologies like Gemini to enhance the performance and latency of their AI-driven models. He shares: "The network and ecosystem we joined were truly inspiring. We learned valuable insights from every founder and company we interacted with."&lt;/p&gt;&lt;/figcaption&gt;
              
            &lt;/figure&gt;
          &lt;/li&gt;
        

      &lt;/ul&gt;

      &lt;div class="h-c-carousel__paginate glue-pagination-previous" data-glue-pagination-label="Previous" data-glue-pagination-update-model="false"&gt;
        &lt;div class="h-c-carousel__paginate-wrap"&gt;
          &lt;svg role="img" class="h-c-icon h-c-icon--keyboard-arrow-left"&gt;
            &lt;use xlink:href="#mi-keyboard-arrow-right"&gt;&lt;/use&gt;
          &lt;/svg&gt;
        &lt;/div&gt;
      &lt;/div&gt;

      &lt;div class="h-c-carousel__paginate glue-pagination-next" data-glue-pagination-label="Next" data-glue-pagination-update-model="false"&gt;
        &lt;div class="h-c-carousel__paginate-wrap"&gt;
          &lt;svg role="img" class="h-c-icon h-c-icon--keyboard-arrow-right"&gt;
            &lt;use xlink:href="#mi-keyboard-arrow-right"&gt;&lt;/use&gt;
          &lt;/svg&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;

    &lt;div class="h-c-carousel__navigation"&gt;
      &lt;div class="glue-pagination-page-list"&gt;&lt;/div&gt;
    &lt;/div&gt;

  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Apply now: Don’t miss the chance to join this year’s Google for Startups Accelerator: AI First UK cohort&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;If you're an early-stage AI startup in the UK, the Google for Startups Accelerator: AI First program is your chance to accelerate your growth and achieve your full potential. &lt;/span&gt;&lt;a href="https://goo.gle/ai-first-uk-app" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Apply by February 21st&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and take the next step toward scaling your AI startup.&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 22 Jan 2025 12:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/announcing-the-2025-google-for-startups-accelerator-ai-first-uk/</guid><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/1_Hero_image_4RLlAMG.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Announcing the 2025 Google for Startups Accelerator: AI First UK</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/1_Hero_image_4RLlAMG.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/announcing-the-2025-google-for-startups-accelerator-ai-first-uk/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Dr. Rebeca Santamaria-Fernandez</name><title>Director, Business &amp; Corporate Development, Google DeepMind</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Onajite Emerhor</name><title>Regional Lead Google for Startups Accelerator, Europe</title><department></department><company></company></author></item><item><title>Supporting women founders innovating with AI</title><link>https://cloud.google.com/blog/topics/startups/google-for-startups-accelerator-for-women-led-tech-startups/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Despite the growing global investment in AI, women-founded startups remain underrepresented in the venture capital landscape. &lt;/span&gt;&lt;a href="https://pitchbook.com/news/articles/the-european-vc-female-founders-dashboard" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Just last year,&lt;/span&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt; female-founded companies &lt;/span&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;in Europe &lt;/span&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;received just 1.8% of &lt;/span&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;total &lt;/span&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;VC &lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;funding. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To help close this gender gap, we are opening up applications for the &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/women-founders/europe" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Accelerator: Women Founders&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; program for Europe &amp;amp; Israel&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;. This ten-week accelerator is designed to support Seed to Series A women-led AI startups with expert mentorship, technical support, and tailored workshops that lay the groundwork for scaling.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb8709f9eb0&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;&lt;strong style="vertical-align: baseline;"&gt;Fostering a more inclusive AI ecosystem&lt;/strong&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;As AI continues to revolutionize industries, ensuring that diverse voices lead the way is critical for driving innovation that benefits everyone. The &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/women-founders/europe" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google for Startups Accelerator: Women Founders&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; program is working to level the playing field, empowering women-led startups to bring fresh, diverse perspectives to the future of AI. &lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 40px;"&gt;&lt;span style="vertical-align: baseline;"&gt;Margaryta Sivakova, the CEO of &lt;/span&gt;&lt;a href="https://legalnodes.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Legal Nodes&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, leveraged support from the program to scale her business:&lt;/span&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;"Through Google for Startups Accelerator, we learned to build, improve, and scale AI solutions, focusing on production-grade AI, MLOps, and the right infrastructure for rapid scaling."&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 40px;"&gt;&lt;span style="vertical-align: baseline;"&gt;Maria Terzi, the CEO of &lt;/span&gt;&lt;a href="https://www.mallocprivacy.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Malloc Privacy&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, received one-on-one support to help users protect their data on their phones:&lt;/span&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;"We joined Google for Startups Accelerator to enhance our technology and gained much more—insights on pricing, sales, UI/UX design, people management, and fast-paced operations."&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-video"&gt;



&lt;div class="article-module article-video "&gt;
  &lt;figure&gt;
    &lt;a class="h-c-video h-c-video--marquee"
      href="https://youtube.com/watch?v=VQHCxwdLLKE"
      data-glue-modal-trigger="uni-modal-VQHCxwdLLKE-"
      data-glue-modal-disabled-on-mobile="true"&gt;

      
        

        &lt;div class="article-video__aspect-image"
          style="background-image: url(https://storage.googleapis.com/gweb-cloudblog-publish/images/maxresdefault_UqhzqHX.max-1000x1000.jpg);"&gt;
          &lt;span class="h-u-visually-hidden"&gt;Google for Startups Accelerator: Women Founders&lt;/span&gt;
        &lt;/div&gt;
      
      &lt;svg role="img" class="h-c-video__play h-c-icon h-c-icon--color-white"&gt;
        &lt;use xlink:href="#mi-youtube-icon"&gt;&lt;/use&gt;
      &lt;/svg&gt;
    &lt;/a&gt;

    
      &lt;figcaption class="article-video__caption h-c-page"&gt;
        
          &lt;h4 class="h-c-headline h-c-headline--four h-u-font-weight-medium h-u-mt-std"&gt;Watch highlights from the Google for Startups Accelerator Women Founders program.&lt;/h4&gt;
        
        
      &lt;/figcaption&gt;
    
  &lt;/figure&gt;
&lt;/div&gt;

&lt;div class="h-c-modal--video"
     data-glue-modal="uni-modal-VQHCxwdLLKE-"
     data-glue-modal-close-label="Close Dialog"&gt;
   &lt;a class="glue-yt-video"
      data-glue-yt-video-autoplay="true"
      data-glue-yt-video-height="99%"
      data-glue-yt-video-vid="VQHCxwdLLKE"
      data-glue-yt-video-width="100%"
      href="https://youtube.com/watch?v=VQHCxwdLLKE"
      ng-cloak&gt;
   &lt;/a&gt;
&lt;/div&gt;

&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Apply now &lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Women-led startups building with AI in Europe and Israel can apply until January 24 for the 2025 cohort of the Google for Startups Accelerator: &lt;/span&gt;&lt;a href="https://startup.google.com/programs/accelerator/women-founders/europe" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Women Founders program. &lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://startup.google.com/programs/accelerator/women-founders/europe" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Learn more&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and &lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt;apply today &lt;/strong&gt;&lt;a href="https://docs.google.com/forms/d/e/1FAIpQLSeEuq_Sd-hKe5mDDj5P-xU073MU2tMWJaPQtGvVB4vIsiAukA/viewform" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;here&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 08 Jan 2025 17:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/google-for-startups-accelerator-for-women-led-tech-startups/</guid><category>AI &amp; Machine Learning</category><category>Startups</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/1_Hero_Image.max-600x600_tKy4gWm.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Supporting women founders innovating with AI</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/1_Hero_Image.max-600x600_tKy4gWm.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/google-for-startups-accelerator-for-women-led-tech-startups/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Joelle Barral</name><title>Senior Director of Research &amp; Engineering, Google Deepmind</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Pati Jurek</name><title>Europe Regional Lead, Google Accelerator</title><department></department><company></company></author></item><item><title>Google Cloud expands its support for founders through partnerships with 300 accelerators worldwide</title><link>https://cloud.google.com/blog/topics/startups/google-cloud-supports-next-generation-startups/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;At Google Cloud, we focus on building the most competitive and powerful network of support for startups. One of the ways we show our support is by partnering with investors, accelerators, and incubators to deliver the resources and benefits that help startups succeed.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;For example, we are proud to partner with marquee institutions who invest in the next generation of founders like &lt;/span&gt;&lt;a href="https://techcrunch.com/2024/08/01/google-cloud-now-has-a-dedicated-cluster-of-nvidia-gpus-for-y-combinator-startups/?guccounter=1&amp;amp;guce_referrer=aHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS8&amp;amp;guce_referrer_sig=AQAAAI8tTItPCUmKeXjwZT7ue0T8wBsQzZXPOqaV34QpP0WLQon4UBLFl9kZxL3ALhBzY8AI2RavEPqCt3xPktJAYd1-lIaW5zlp0pkW0JK-M1S5kXRvJ9uJyeVUn2AQpW_szpBgoDzIfRLNJ3gGw_C2Uy27EnGQzeCRPj-PRwZ5c8rv" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Y Combinator&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. We have also extended our network of partnerships to accelerators worldwide who support founders with mentorship, education, and in some cases, investment, such as &lt;/span&gt;&lt;a href="https://cloudonair.withgoogle.com/events/summit-startup-24?talk=t1_s4_howgooglecloudandaccelerators" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;ERA and AI2 Incubator&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;In 2024, we worked with over 300 accelerators worldwide to help thousands of startups and over 3,000 founders build with Google. We've extended benefits to these startups including access to Startup Success Managers, Customer Engineers, and AI product teams, dedicated packages of credits, and technical programming like workshops and office hours.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Today, we’re proud to announce our latest partnerships with three more accelerators – &lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt;Berkeley SkyDeck, Upekkha, and UnternehmerTUM&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; – and highlight some of the companies we’re supporting through them.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Try Google Cloud for free&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7fb86d366130&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Get started for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;https://console.cloud.google.com/freetrial?redirectPath=/welcome&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Introducing our latest accelerator partnerships&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;a href="https://skydeck.berkeley.edu/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Berkeley SkyDeck&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;is the only university accelerator partnering with a leading venture capital fund. Berkeley’s mission emphasizes long-term societal benefit, and prioritizes companies that align with this vision. Several SkyDeck companies are already running on Google Cloud, including:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://deeli.ai" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Deeli AI, &lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;an AI-p&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;owered platform that helps companies discover and evaluate emerging technologies to make informed investment decisions. They currently build their product and data pipeline on various services such as GCE, Cloud Run, and Dataflow, and interact with models from the Vertex AI Model Garden.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://contextqa.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;ContextQA&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is Agentic AI for software testing, providing 12x the value by enabling accurate, user-centric test automation from day zero of development and helps to deliver bug-free product 40% faster. ContextQA uses Gemini models to continuously compare actual application behavior with expected behavior, adapting automatically to new changes for immediate agility.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.t-robotics.ai/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;T-Robotics&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; provides pre-trained AI skills for robots that make commercial robots intelligent and robust.  These skills are programmed through a conversational robot agent that leverages visual, haptic, action and language models - including Google Cloud's Gemini - to seamlessly interpret and adapt to diverse industrial environments.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;&lt;em&gt;“Our partnership with Google Cloud enables startups to build better and faster, which is crucial for their success. Beyond the technology and services provided, we foster meaningful connections between our startups and Googlers, facilitating discussions on industry trends and innovations in AI.”&lt;/em&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;– &lt;strong&gt;Taylor Marcus, Head of Business Development at Berkeley Skydeck&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.upekkha.io/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Upekkha&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;helps Indian founders build vertical AI companies that sell globally, with intense coaching, a network of founders, and capital. Google Cloud is partnering with them to support:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://outpost.run/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Outpost&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is a platform for AI/ML and data teams to train, fine tune, and deploy genAI models with managed infrastructure, tools, and workflows.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.labellerr.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Labellerr&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;'s data labeling engine uses automated annotation, and smart QA, processing millions of images and thousands of hours of videos in just a few weeks using Google Vertex AI Integration and Cloud Run, which previously took months for ML teams.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://bynry.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Bynry's&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; SMART360 leverages Google Cloud’s robust infrastructure to empower small and mid-sized utilities to enhance operational efficiency and customer satisfaction. &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;&lt;em&gt;“Google Cloud has technology that just works. You can tell they actually listen to developers. They don’t just give out credits; they help founders understand how to use their technology.”&lt;/em&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;– &lt;strong&gt;Thiyagarajan Maruthavanan (Rajan) - Managing Partner, Upekkha&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.unternehmertum.de/en" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;UnternehmerTUM&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;is the leading center for innovation and business creation in Europe with more than 50 high-growth technology start-ups every year, and offers complete service from initial idea to IPO. Startups supported by them include:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://kraftblock.com" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Kraftblock&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;’s &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;innovative technology offers unparalleled large-scale, long-duration energy storage, empowering industries to transition towards sustainable thermal processes. The green tech company is using Google’s Compute Engine to power their simulations.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.tulana.de/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;tulanā&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;’s highly customizable platform uses forecasting, optimization, simulation and AI to help enterprise clients take better decisions across their supply chains. tulanā is using Google Cloud Run to horizontally scale its optimization workloads, Google's Gemini model for intelligent ETL processes, and Cloud SQL and Big Query to store customer data.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="http://se3.ai" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;SE3 Labs&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; specializes in 3D computer vision and AI. They develop advanced technologies to create "Spatial GPTs,&lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt;"&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; which are essentially AI models that can understand and interact with the world in 3D. The startup loves using Google Cloud Run for their deployment.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="vertical-align: baseline;"&gt;“We chose to partner with Google Cloud because their innovation-driven approach aligns closely with our mission to empower high-tech startups. Google Cloud’s advanced infrastructure, AI, and data analytics capabilities offer exceptional tools that support our founders in building robust, scalable solutions, from market entry to growth.” &lt;/span&gt;&lt;/em&gt;&lt;span style="vertical-align: baseline;"&gt;– &lt;/span&gt;&lt;strong&gt;&lt;span style="vertical-align: baseline;"&gt;Barbara Mehner, Managing Partner at XPRENEURS by UnternehmerTUM&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Building on a history of support with accelerators &lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;These new partnerships expand on our existing work with accelerators to help bring leading cloud, AI models, and AI-optimized infrastructure to the companies they support. These include:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://500.co/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;500 Global&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is a multi-stage venture capital firm. Its investments and flagship accelerator help founders with access to a supportive global network of those who’ve successfully built startups before. Notable alumni include Intercom, Talkdesk, Innovaccer, Babylist and Solana.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://accelerate.techstars.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Techstars&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; provides individualized care with its small cohort size and mentor-driven approach across more than 30 cities worldwide.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.antler.co/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Antler&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is a global early-stage VC that operates in 30 cities across major entrepreneurial hubs, with a proven process to back founders from pre-seed to Series C. Their flagship &lt;/span&gt;&lt;a href="https://www.antler.co/residency" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Residency Program&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; empowers founders to find the right co-founders, validate and build ideas rapidly, and secure funding to launch and scale impactful ventures.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://web.startx.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;StartX&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is the non-profit startup community, accelerator, and fellowship program for over 2,500 Stanford University founders, offering support without requiring equity&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.plugandplaytechcenter.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Plug and Play&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; operates over 100 accelerator programs globally, accelerating more than 2,500 startups annually. Its portfolio includes over 30 unicorns and a network of 90,000 startups worldwide. They offer mentorship and access to a vast network of investors and industry leaders.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.gener8tor.com/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Gener8tor&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;offers 75 programs globally, each with a highly selective, concierge-level experience startups that are selected.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://masschallenge.org/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;MassChallenge&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;stands out as an impact-focused, zero-equity accelerator, which allows startups to receive world-class support without giving up any ownership.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.linkedin.com/company/iitm-incubation-cell/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;IIT Madras Incubation Cell&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is deeply integrated with India’s top engineering institute and provides a unique ecosystem that nurtures R&amp;amp;D-driven, deep-tech startups.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://www.nasscom.in/ai/genaifoundry/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;nasscom GenAI Foundry&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;offers Indian GenAI startups access to GPU resources, fundraising, paid pilot and showcase opportunities, enablement on go-to-market, technology, Responsible AI, and intellectual property, through a network of 3,500+ industry members and subject matter experts.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;a href="https://lanzadera.es/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;Lanzadera&lt;/strong&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; is a prominent accelerator in Spain, unique in its adoption of a management model that drove its founder’s success in business, and its close collaboration with the business school EDEM and investment fund Angels, creating a flywheel of innovation.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We’re excited about all of the opportunities that will come from these new partnerships, as well as the increasing value of relationships we have with other accelerators. All of these programs and strategies illustrate our ever-expanding commitment to founders and startups that stand on the front lines of innovation. &lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Learn more&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Companies who work with these accelerators should reach out to their accelerator Program Manager to learn more about getting started with Google Cloud.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Tue, 07 Jan 2025 17:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/startups/google-cloud-supports-next-generation-startups/</guid><category>Partners</category><category>Startups</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Google Cloud expands its support for founders through partnerships with 300 accelerators worldwide</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/startups/google-cloud-supports-next-generation-startups/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>James Lee</name><title>General Manager, Startups and AI, Google Cloud</title><department></department><company></company></author></item></channel></rss>