Topic

Gemini API

All digests tagged Gemini API

Agents Without Code: Skills, YAML, and Filesystems Replaced Python — Philipp Schmid, Google DeepMind thumbnail

· 18:28

Agents Without Code: Skills, YAML, and Filesystems Replaced Python — Philipp Schmid, Google DeepMind

The presentation details the evolution of LLM agents, demonstrating a shift from complex, brittle Python code loops to declarative, file-based definitions using system instructions and skills. The speaker shows that modern agent architectures, such as the Gemini API's anti-gravity agent, utilize a hosted sandbox and network proxy to manage state and credentials securely. This allows agents to operate using general-purpose tools (like GitHub CLI or Google Search) defined in files (e.g., `AGENTS.md`), drastically reducing the need for thousands of lines of custom orchestration code.

Key takeaways

  1. The Agent Evolution: Code to Files

    Agent development is moving away from writing explicit Python loops, JSON schemas, and tool routing logic. The core functionality is now expressed in files (Markdown/Skills) that define instructions, rules, and capabilities, allowing the model to use general tools.

  2. Server-Side State Management 14:02

    The new architecture handles complex tasks by moving loops, tool routing, session state, and context compaction to the server side, requiring only a single API call with new inputs.

  3. Security and Isolation 12:32

    A hosted sandbox and network proxy ensure that the agent never sees the actual credentials, injecting tokens only when outbound requests are made, and allowing domain restriction for enhanced security.

  4. Focus on Domain Logic 16:40

    The primary work for developers is now defining the domain instructions, rules, and evaluation criteria (the 'what'), rather than writing the infrastructure code (the 'how').

Watch on YouTube Full article

Building the ultimate morning dashboard with Gemini 3.6 Flash and Nano Banana thumbnail

· 1:14

Building the ultimate morning dashboard with Gemini 3.6 Flash and Nano Banana

The video details a personal project—an automated, image-based dashboard displayed on an e-ink picture frame—designed to help families manage daily routines. The system leverages Gemini 3.6 Flash and Nano Banana to intelligently generate visual reminders (e.g., suggested clothing based on weather and calendar events), significantly reducing morning friction. The entire process is scheduled nightly using AntiGravity, making the complex AI workflow accessible even to non-professional developers.

Key takeaways

  1. AI-Powered Daily Dashboard

    The system functions as an image-based calendar that suggests appropriate clothing and items for kids based on scheduled events and current weather conditions, displayed on an e-ink screen.

  2. Automated Workflow Design

    The process is automated nightly at 1:00 AM using AntiGravity. A script checks the Google Calendar and weather data, generating a prompt for Nano Banana to create an image.

  3. Model Selection Rationale

    Gemini 3.6 Flash was chosen for its combination of intelligence, speed, and low cost, which is critical for a system running daily.

Watch on YouTube Full article