Web Research Assistant

Learn how to combine the Webpage node with LLM Web Search. Ask a question, and the AI will research using both the reference documentation and real-time web search.

This recipe shows you how to build an app that combines fixed reference pages with LLM web search capabilities. Ask a question, and the AI will research using both the reference documentation and real-time web search to provide comprehensive answers.

Overview

Purpose: Combine fixed reference pages with LLM web search for comprehensive research.

NodeRoleModel
App EntryQuestion input-
Webpage NodeFetch reference information from fixed URL-
Generator 1 (Research)Collect information via web searchclaude-haiku-4.5
Generator 2 (Summary)Summarize research resultsgemini-2.5-flash-lite

What you'll learn: Webpage node, LLM Web Search feature, combining information sources

Workflow Diagram

flowchart LR
    A[Research Question] --> C[Web Researcher]
    B[Reference Webpage] --> C
    C --> D[Summary Generator]

Node Configuration Details

1. App Entry

ItemValue
Node NameResearch Question
Node Input Namequestion
Prompt- (User input only)

2. Webpage Node

ItemValue
Node NameReference Webpage
URLhttps://docs.giselles.ai/llms-full.txt

3. Generator Node (Web Researcher)

ItemValue
Node NameWeb Researcher
Modelclaude-haiku-4.5
ThinkingON
Web SearchON

Prompt:

Research the following question using web search and the reference page:

Question: @Research Question

Reference Information: @Reference Webpage

Requirements:
- Search the web for the latest and most relevant information
- Combine web search results with the reference page content
- Provide accurate and up-to-date answers
- Cite sources when possible

4. Generator Node (Summary)

ItemValue
Node NameSummary Generator
Modelgemini-2.5-flash-lite
Thinking-
Web SearchOFF

Prompt:

Summarize the research findings into a clear report:

@Web Researcher

Requirements:
- Executive summary (2-3 sentences)
- Key findings as bullet points
- Conclusion and recommendations

On this page