Node Config
{
title: "AI Web Search",
category: "LLM",
type: "web_search_node",
icon: {},
desc: "Search the web and get summarised information",
inputs: [
{
desc: "The flow of the workflow",
name: "Flow",
type: "Flow",
},
{
desc: "Query to search",
name: "Query",
type: "Text",
},
],
outputs: [
{
desc: "The content of all the search results in markdown",
name: "output",
type: "Text",
},
],
fields: [
{
desc: "Query to search",
name: "Query",
type: "TextArea",
value: "Enter text here...",
},
{
desc: "The preferred search language",
name: "Language",
type: "select",
value: "English",
options: [
"English",
"Spanish",
"French",
"German",
"Japanese",
"Chinese",
"Hindi",
"Portugese",
"Italian",
"Korean",
"Dutch",
"Arabic",
"Sweedish",
"Hebrew",
"Afrikaans",
"Russian",
],
},
],
difficulty: "easy",
tags: ["llm", "search", "web"],
}
Additional Information
Long Description:
The AI Web Search node searches the web, based on your query and preferred language and then returns the output in markdown format. Markdown format makes it easier for LLMs to parse the information from around the web.
Use Cases:
- Gather latest and trending news for automated content generation.
- Gather information from around the web for summarisation.
- Gather specific information from the web to create newsletters.
Node Config
Additional Information
Long Description:
The AI Web Search node searches the web, based on your query and preferred language and then returns the output in markdown format. Markdown format makes it easier for LLMs to parse the information from around the web.
Use Cases: