You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
meta_description: OpenSearch 3.4's new agentic search UI enables natural language queries through configurable agents.
17
17
---
18
18
19
-
We are excited to announce an all-new agentic search user experience available in OpenSearch 3.4. This UI provides a streamlined interface for configuring agents, testing them with natural language queries, and exporting settings for integration into your downstream applications.
19
+
We are excited to announce an all-new agentic search user experience available in OpenSearch 3.4. This UI provides a streamlined interface for configuring agents, testing them with natural language queries, and exporting configurations for downstream application integration.
20
20
21
21
## What is agentic search?
22
22
@@ -32,15 +32,15 @@ Let's explore some practical use cases. The below examples use the following pre
32
32
33
33
- Deployed Bedrock Claude 4.5 agent. For details on how to deploy this model in your environment, and to view other suggested models compatible with agentic search, check out the [documentation](https://docs.opensearch.org/latest/vector-search/ai-search/agentic-search/index/).
34
34
- Index `demo_amazon_fashion`. This was created using the MIT-licensed [Fashion Products Images Dataset](https://www.kaggle.com/datasets/paramaggarwal/fashion-product-images-dataset) with added synthetic values for price and ratings. Any index containing product data will be suitable.
35
-
- Connector to an MCP server containing order history based on customer IDs.
35
+
- Connector to an MCP server containing order history based on customer IDs. For details on how to connect to external MCP servers, check out the [documentation](https://docs.opensearch.org/latest/ml-commons-plugin/agents-tools/mcp/mcp-connector/)
36
36
37
-
## E-commerce conversational search
37
+
## Example 1: E-commerce conversational search
38
38
39
39
Conversational agents enable users to ask questions in natural language and refine their search through follow-up questions, with the agent maintaining context across the conversation to progressively narrow results and find exactly what they're looking for. Let's build an application that demonstrates this capability.
40
40
41
41
### Step 1: Create an agent
42
42
43
-
Create a conversational agent:
43
+
Create a conversational agent with different index-related tools:
44
44
45
45
1. Select **Create agent**.
46
46
2. Provide a name: `My conversational agent`.
@@ -63,7 +63,7 @@ You'll see the agent-generated query DSL and search results. It looks like all a
@@ -83,7 +83,7 @@ You can try more queries, and the agent will continuously reference and update t
83
83
84
84
Searches taking too long? Not getting the results you were expecting? Fortunately, there are plenty of ways to fine-tune your agents and iteratively test different configurations.
85
85
86
-
First, let's try swapping out the model for the latest one from OpenAI—GPT-5. This model offers enhanced reasoning capabilities and improved understanding of complex, multi-faceted user queries. After the model is deployed, let's continue:
86
+
First, let's try swapping out the model for the latest one from OpenAI: GPT-5. This model offers enhanced reasoning capabilities and improved understanding of complex, multi-faceted user queries. After the model is deployed, let's continue:
87
87
88
88
1. Under **Configure Agent**, select the **Model** dropdown.
89
89
2. Select `OpenAI GPT-5`.
@@ -114,7 +114,7 @@ Next, let's try integrating with the MCP server to let the agent view the user's
2. Under the **MCP Server** dropdown, select `Customer Order History MCP Server`.
117
-
3. Under **Tool filters**, adding`simple_get_order_history` will only allow this tool from the server available to the agent.
117
+
3. Under **Tool filters**, entering`simple_get_order_history` will only allow this tool from the MCP server available to the agent. This tool returns default order history without taking any parameters.
Flow agents provide rapid, single-query search capabilities, executing significantly faster than conversational agents when multi-turn conversations or complex reasoning aren't needed. Let's build an application that leverages this efficiency.
0 commit comments