> ## Documentation Index
> Fetch the complete documentation index at: https://docs.guild.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Slides

> Give agents access to Google Slides presentations.

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

<Steps>
  <Step title="Open Credentials">Go to **Credentials** in Guild.</Step>
  <Step title="Connect Google Slides">Click **Google Slides** and authorize with your Google account.</Step>
</Steps>

## Usage

```typescript theme={null}
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.

```typescript theme={null}
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",
    ]),
  },
})
```
