# DEB-133: Integrate with connected cloud storage system - One Drive

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

- **Status:** Start
- **Assignee:** Unassigned
- **Priority:** Medium
- **Created:** 2026-01-23T16:45:44.219+0530
- **Updated:** 2026-02-09T15:09:34.889+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 - One Drive. 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 OneDrive Agent
    participant OD as Microsoft Graph API

    User->>RT: Query about shared files
    RT->>DSA: A2A: search_files(query, user_token)
    DSA->>OD: GET /me/drive/search?q=...
    OD-->>DSA: Files + metadata
    DSA->>DSA: Read & chunk file content
    DSA-->>RT: Relevant content + OneDrive path links
    RT-->>User: Answer + clickable file path
```
