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
Copy file name to clipboardExpand all lines: solutions/search/agent-builder/agent-builder-agents.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,4 +121,4 @@ For an overview, refer to [Agents API](kibana-api.md#agents).
121
121
122
122
### Serverless API reference
123
123
124
-
For the complete API reference, refer to the [Kibana serverless API reference](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-agents).
124
+
For the complete API reference, refer to the [Kibana API reference](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-agents).
Copy file name to clipboardExpand all lines: solutions/search/agent-builder/chat.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,9 +68,7 @@ For a quick overview of the REST API for conversations, refer to [Chat and conve
68
68
69
69
### Serverless API reference
70
70
71
-
For the complete API reference, refer to the [Kibana serverless API reference](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-conversations).
72
-
73
-
71
+
For the complete API reference, refer to the [Kibana API reference](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-conversations).
Copy file name to clipboardExpand all lines: solutions/search/agent-builder/kibana-api.md
+19-19Lines changed: 19 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ applies_to:
10
10
11
11
# Work with {{agent-builder}} using the APIs
12
12
13
-
This page provides a quick overview of the main {{kib}} API endpoints for {{agent-builder}}. For complete details including all available parameters, request/response schemas, and error handling, refer to the [{{kib}} serverless API reference](https://www.elastic.co/docs/api/doc/serverless/group/endpoint-agent-builder).
13
+
This page provides a quick overview of the main {{kib}} API endpoints for {{agent-builder}}. For complete details including all available parameters, request/response schemas, and error handling, refer to the [{{kib}} API reference](https://www.elastic.co/docs/api/doc/kibana/group/endpoint-agent-builder).
14
14
15
15
These APIs allow you to programmatically work with the {{agent-builder}} abstractions.
16
16
@@ -63,7 +63,7 @@ Dev Tools [Console](/explore-analyze/query-filter/tools/console.md) automaticall
63
63
64
64
**Example:** List all tools
65
65
66
-
This example uses the [list tools API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-tools).
66
+
This example uses the [list tools API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-tools).
67
67
68
68
::::{tab-set}
69
69
:group: api-examples
@@ -89,7 +89,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/tools" \
89
89
90
90
**Example:** Create a tool
91
91
92
-
This example uses the [create a tool API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-post-agent-builder-tools).
92
+
This example uses the [create a tool API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-post-agent-builder-tools).
93
93
94
94
::::{tab-set}
95
95
:group: api-examples
@@ -155,7 +155,7 @@ curl -X POST "https://${KIBANA_URL}/api/agent_builder/tools" \
155
155
156
156
**Example:** Get a tool by ID
157
157
158
-
This example uses the [get a tool by ID API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-tools-id).
158
+
This example uses the [get a tool by ID API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-tools-id).
159
159
160
160
::::{tab-set}
161
161
:group: api-examples
@@ -181,7 +181,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/tools/{id}" \
181
181
182
182
**Example:** Delete a tool by ID
183
183
184
-
This example uses the [delete a tool by ID API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-delete-agent-builder-tools-id).
184
+
This example uses the [delete a tool by ID API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-delete-agent-builder-tools-id).
This example uses the [send chat message API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-post-agent-builder-converse).
530
+
This example uses the [send chat message API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-post-agent-builder-converse).
531
531
532
532
::::{tab-set}
533
533
:group: api-examples
@@ -562,7 +562,7 @@ curl -X POST "https://${KIBANA_URL}/api/agent_builder/converse" \
562
562
563
563
**Example:** Chat with an agent and stream events
564
564
565
-
This example uses the [send chat message (streaming) API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-post-agent-builder-converse-async).
565
+
This example uses the [send chat message (streaming) API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-post-agent-builder-converse-async).
566
566
567
567
::::{tab-set}
568
568
:group: api-examples
@@ -600,7 +600,7 @@ curl -X POST "https://${KIBANA_URL}/api/agent_builder/converse/async" \
600
600
601
601
**Example:** List conversations
602
602
603
-
This example uses the [list conversations API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-conversations).
603
+
This example uses the [list conversations API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-conversations).
604
604
605
605
::::{tab-set}
606
606
:group: api-examples
@@ -626,7 +626,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/conversations" \
626
626
627
627
**Example:** Get conversation by ID
628
628
629
-
This example uses the [get conversation by ID API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-conversations-conversation-id).
629
+
This example uses the [get conversation by ID API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-conversations-conversation-id).
630
630
631
631
::::{tab-set}
632
632
:group: api-examples
@@ -652,7 +652,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/conversations/{conversation
652
652
653
653
**Example:** Delete conversation by ID
654
654
655
-
This example uses the [delete conversation by ID API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-delete-agent-builder-conversations-conversation-id).
655
+
This example uses the [delete conversation by ID API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-delete-agent-builder-conversations-conversation-id).
656
656
657
657
::::{tab-set}
658
658
:group: api-examples
@@ -707,7 +707,7 @@ Refer to [](a2a-server.md) for more information.
707
707
708
708
**Example:** Get A2A agent card configuration
709
709
710
-
This example uses the [get A2A agent card API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-a2a-agentid-json).
710
+
This example uses the [get A2A agent card API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-a2a-agentid-json).
711
711
712
712
::::{tab-set}
713
713
:group: api-examples
@@ -775,4 +775,4 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/a2a/{agentId}.json" \
775
775
776
776
## API reference
777
777
778
-
For the full API documentation, refer to the [{{kib}} serverless API reference](https://www.elastic.co/docs/api/doc/serverless/group/endpoint-agent-builder).
778
+
For the full API documentation, refer to the [{{kib}} API reference](https://www.elastic.co/docs/api/doc/kibana/group/endpoint-agent-builder).
Copy file name to clipboardExpand all lines: solutions/search/agent-builder/tools.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ For a quick overview of how to work programmatically with tools, refer to [Tools
195
195
196
196
### Serverless API reference
197
197
198
-
For the complete API reference, refer to the [Kibana serverless API reference](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-tools).
198
+
For the complete API reference, refer to the [Kibana API reference](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-tools).
0 commit comments