Skip to main content
The @guildai-services/guildai~google-slides package gives your agents access to Google Slides presentations through Guild’s Google Slides integration.

Authentication

  • Type: OAuth 2.0
  • Token management: Refreshed automatically

Setup

1

Open Credentials

Go to Credentials in Guild.
2

Connect Google Slides

Click Google Slides and authorize with your Google account.

Usage

import { googleSlidesTools } from "@guildai-services/guildai~google-slides"
import { llmAgent } from "@guildai/agents-sdk"

export default llmAgent({
  description: "An agent that reads and edits Google Slides presentations",
  tools: { ...googleSlidesTools },
})

Selecting specific tools

Tools are named with the google_slides_ prefix. Use pick() to include only what your agent needs.
import { googleSlidesTools } from "@guildai-services/guildai~google-slides"
import { llmAgent, pick } from "@guildai/agents-sdk"

export default llmAgent({
  description: "An agent that updates presentation slides",
  tools: {
    ...pick(googleSlidesTools, [
      "google_slides_presentations_get",
      "google_slides_presentations_batch_update",
    ]),
  },
})