flow
(required): The input flow containing the data to be processed.query
(required): The search query or keywords to look for in the knowledge base.count
(optional, default: 3): The maximum number of search results to return.metadata
(optional, default: ): Additional metadata or parameters to pass to the search engine.flow
: The output flow with the search results appended.knowledge
: An array containing the retrieved knowledge items that match the search query.data
: An array containing the raw data of the search results.flow
to the node from which you want to initiate the search.query
input to specify the search keywords or query you want to use.count
input to control the maximum number of search results to retrieve (default is 3).metadata
or parameters required by the search engine.flow
output to the next node in your spell to continue processing the data.knowledge
output to access the retrieved knowledge items that match the search query.data
output.count
input based on your requirements. Retrieving too many results may impact performance.metadata
input to pass any additional parameters or filters supported by the search engine.knowledge
items as needed before using them in subsequent nodes.