Google internal program

Empowering Googlers to
Build with AI

The "I Built This" program is your hands-on journey from concept to reality. Learn to harness the full power of Gemini and craft the future.


import { GoogleGenerativeAI } from "@google/genai";

const ai = new GoogleGenerativeAI(process.env.API_KEY);
const model = ai.getGenerativeModel({ 
  model: "gemini-1.5-pro",
  systemInstruction: "You are Antigravity, an expert builder." 
});

async function buildTheFuture() {
  const result = await model.generateContent(
    "How can I solve a billion user problem?"
  );
  console.log(result.response.text());
}
                    

What you will learn

A comprehensive hands-on curriculum tailored for internal developers.

Prompt Engineering

Master the art of communicating with LLMs to extract maximum performance and accuracy.

Agentic Systems

Design multi-agent architectures that autonomously solve complex user requirements.

🔗

Function Calling

Connect Gemini to internal APIs, databases, and existing Google infrastructure.