This node queries the You.com web search API.

Node Inputs

  1. Search Query: The search text for the You.com web search
    • Type: Text
  2. API Key: Your You.com API key
    • Type: Text

Node Parameters

In the gear:

  1. Loader Type: The Type of loader (search) you want. The available types are: General and News.

Node Outputs

  1. Output: The results from the You.com web search
    • Type: List<Text>
    • Example usage: {{you_dot_com_0.output}}

Considerations

  • API key is required.
  • Click on the “+” button on the right of the node to create and connect the node to a semantic search node to enable semantic search on the search results.

Example

The below example is a pipeline which queries the You.com web search API and answers the query: What is the tallest building in New York?.

  1. Input Node: Represents the search query
  2. You.com Web Search Node: Queries the You.com web search API
    • Search Query: {{input_0.text}}
    • API Key: [API Key]
  3. LLM Node: Uses the LLM to answer the query based on the You.com search results
    • Prompt: Question: {{input_0.text}} Context: {{you_dot_com_0.output}}
    • System (Instruction): Answer the question based on the context.
  4. Output Node: Displays the answer
    • Output: {{openai_0.output}}