> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cognigy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Knowledge Search

<a href="/release-notes/4.61"><Badge className="version-badge" color="blue">Updated in 4.61</Badge></a>

<Frame>
  <img class="image-center" src="https://mintcdn.com/cognigy-15abf2ba/jD73u_IBHRit9B59/_assets/ai/develop/node-reference/other/knowledge-search.png?fit=max&auto=format&n=jD73u_IBHRit9B59&q=85&s=369e0bec6b10f0d8fe2bbab79655a0a5" alt="Knowledge Search Node configuration panel" style={{ width: 'auto' }} width="263" height="60" data-path="_assets/ai/develop/node-reference/other/knowledge-search.png" />
</Frame>

## Description

<Danger>
  In Cognigy.AI 2026.5.0, the Knowledge Search Node was removed. If you use this Node, it will still work, but you won't be able to create new Knowledge Search Nodes. To ensure a seamless transition, we strongly recommend using the [Search Extract Output](/ai/agents/develop/node-reference/other-nodes/search-extract-output) Node, as it offers the same functionality and additional features.
</Danger>

This Node searches and retrieves content from data that was previously uploaded to the Knowledge AI solution.

Before using this Node, ensure that you have a `text-embedding-ada-002` LLM configured. Refer to the [list of supported providers](/ai/agents/develop/gen-ai-and-llms/model-support-by-feature).

To display the output of the Knowledge Search Node to the user, follow these steps:

1. In the Flow editor, add a Say Node below the Knowledge Search Node.
2. In the **Output Type** field, select **Text**.
3. In the **Text** field, click <img src="https://mintcdn.com/cognigy-15abf2ba/WLWtdAYHA6nv5QU9/_assets/icons/black-and-white/token.svg?fit=max&auto=format&n=WLWtdAYHA6nv5QU9&q=85&s=be727fba173e3e825095d7765ab0bae2" alt="token" width="20" height="20" data-path="_assets/icons/black-and-white/token.svg" /> and select the **KSearch:TopK Texts** Token.
4. Click **Save Node**.

## Parameters

### Knowledge Store

Select a store from the list to allow the Node to retrieve the data.

### Search Settings

| Parameter                     | Type          | Description                                                                                                                                                                                  |
| ----------------------------- | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Top K                         | Number        | Specify how many of the top K knowledge search results should be returned.                                                                                                                   |
| Where to store the result     | Select        | The storage for the search results. Select a storage: <ul><li>Input — the content will be stored in the Input object.</li><li>Context — the content will be stored in the Context.</li></ul> |
| Input Key to store result     | CognigyScript | The location in the input object where the result will be stored. For example, `input.knowledgeSearch`.                                                                                      |
| Input Context to store result | CognigyScript | The location in the context object where the result will be stored. For example, `context.knowledgeSearch`.                                                                                  |

## More Information

* [Search Extract Output](/ai/agents/develop/node-reference/other-nodes/search-extract-output)
* [Knowledge Search Overview](/ai/agents/develop/knowledge-ai/overview)
