# DEB-137: Integrate with connected cloud storage systems - Amazon S3

> **Jira:** [DEB-137](https://divami.atlassian.net/browse/DEB-137)  
> **Source Report:** [20260315.md](../../reports/jira/20260315.md)

- **Status:** Start
- **Assignee:** Unassigned
- **Priority:** Medium
- **Created:** 2026-01-23T16:46:07.072+0530
- **Updated:** 2026-02-09T15:12:01.461+0530

**Description:**

As a user, I should be able to query for information, using natural language prompts, that is present in any of the shared files/folders within the cloud storage systems - Amazon S3. Along with the response, it should also provide the path (as a link) to the source of the response.

**Architecture Diagram:**

```mermaid
sequenceDiagram
    participant User
    participant RT as RT Decision Agent
    participant DSA as S3 Data Source Agent
    participant S3 as AWS S3 API

    User->>RT: Query about documents
    RT->>DSA: A2A: search_files(query)
    DSA->>S3: ListObjectsV2 + GetObject
    S3-->>DSA: File content
    DSA->>DSA: Chunk & embed files<br/>(vector search)
    DSA-->>RT: Relevant chunks + S3 path links
    RT-->>User: Answer + clickable S3 path
```
