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

# Google Cloud Storage

> GCS for file storage

# Google Cloud Storage

GCS for file-based storage.

## Setup

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
pip install google-cloud-storage
export GOOGLE_APPLICATION_CREDENTIALS=path/to/service-account.json
```

## Quick Start

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents import Agent

agent = Agent(
    name="Assistant",
    instructions="You are a helpful assistant.",
    memory={
        "backend": "gcs",
        "db": "gs://your-bucket/sessions",
        "session_id": "my-session"
    }
)

response = agent.start("Hello!")
print(response)
```
