Skip to content

[NODE] Add AI Web Search documentation #7

@ShambaC

Description

@ShambaC

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentation

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions