# DEB-118: Application should be able to provide responses from Internet

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

- **Status:** Start
- **Assignee:** Phawhan Saii Gajjalakonda
- **Priority:** Medium
- **Created:** 2026-01-20T13:50:17.873+0530
- **Updated:** 2026-02-09T15:05:50.257+0530

**Description:**

In scenarios, where the information requested by user is not available with the connected enterprise information repositories, the application should be able to search for it in Internet, and provide the response. Along with the response, it should also provide the source URL, that when clicked, would open the link in a new tab.

**Architecture Diagram:**

```mermaid
flowchart TD
    A[User Query] --> B[RT Agent: search enterprise sources]
    B --> C{Found in<br/>enterprise data?}
    C -->|Yes| D[Return enterprise answer + source]
    C -->|No| E[Fallback: Internet Search Agent]
    E --> F[Web search via Search API<br/>e.g. Tavily / SerpAPI]
    F --> G[Retrieve top results]
    G --> H[Synthesize answer from web]
    H --> I[Return with source URL<br/>as clickable link]
```
