Skip to content

Commit b53de2e

Browse files
authored
[agent builder] link to main kibana API reference (elastic#3665)
contributes to elastic/docs-content-internal#434
1 parent 47e8150 commit b53de2e

File tree

5 files changed

+23
-25
lines changed

5 files changed

+23
-25
lines changed

solutions/search/agent-builder/agent-builder-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@ For an overview, refer to [Agents API](kibana-api.md#agents).
121121

122122
### Serverless API reference
123123

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).

solutions/search/agent-builder/chat.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ For a quick overview of the REST API for conversations, refer to [Chat and conve
6868

6969
### Serverless API reference
7070

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).
7472

7573

7674

solutions/search/agent-builder/kibana-api.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ applies_to:
1010

1111
# Work with {{agent-builder}} using the APIs
1212

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).
1414

1515
These APIs allow you to programmatically work with the {{agent-builder}} abstractions.
1616

@@ -63,7 +63,7 @@ Dev Tools [Console](/explore-analyze/query-filter/tools/console.md) automaticall
6363

6464
**Example:** List all tools
6565

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).
6767

6868
::::{tab-set}
6969
:group: api-examples
@@ -89,7 +89,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/tools" \
8989

9090
**Example:** Create a tool
9191

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).
9393

9494
::::{tab-set}
9595
:group: api-examples
@@ -155,7 +155,7 @@ curl -X POST "https://${KIBANA_URL}/api/agent_builder/tools" \
155155

156156
**Example:** Get a tool by ID
157157

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).
159159

160160
::::{tab-set}
161161
:group: api-examples
@@ -181,7 +181,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/tools/{id}" \
181181

182182
**Example:** Delete a tool by ID
183183

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).
185185

186186
::::{tab-set}
187187
:group: api-examples
@@ -208,7 +208,7 @@ curl -X DELETE "https://${KIBANA_URL}/api/agent_builder/tools/{id}" \
208208

209209
**Example:** Update a tool by ID
210210

211-
This example uses the [update a tool API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-put-agent-builder-tools-toolid).
211+
This example uses the [update a tool API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-put-agent-builder-tools-toolid).
212212

213213
::::{tab-set}
214214
:group: api-examples
@@ -270,7 +270,7 @@ curl -X PUT "https://${KIBANA_URL}/api/agent_builder/tools/{toolId}" \
270270

271271
**Example:** Run a tool
272272

273-
This example uses the [execute a tool API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-post-agent-builder-tools-execute).
273+
This example uses the [execute a tool API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-post-agent-builder-tools-execute).
274274

275275
::::{tab-set}
276276
:group: api-examples
@@ -312,7 +312,7 @@ curl -X POST "https://${KIBANA_URL}/api/agent_builder/tools/_execute" \
312312
313313
**Example:** List all agents
314314
315-
This example uses the [list agents API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-agents).
315+
This example uses the [list agents API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-agents).
316316
317317
::::{tab-set}
318318
:group: api-examples
@@ -338,7 +338,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/agents" \
338338
339339
**Example:** Create an agent
340340
341-
This example uses the [create an agent API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-post-agent-builder-agents).
341+
This example uses the [create an agent API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-post-agent-builder-agents).
342342
343343
::::{tab-set}
344344
:group: api-examples
@@ -408,7 +408,7 @@ curl -X POST "https://${KIBANA_URL}/api/agent_builder/agents" \
408408

409409
**Example:** Get an agent by ID
410410

411-
This example uses the [get an agent by ID API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-get-agent-builder-agents-id).
411+
This example uses the [get an agent by ID API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-get-agent-builder-agents-id).
412412

413413
::::{tab-set}
414414
:group: api-examples
@@ -434,7 +434,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/agents/{id}" \
434434

435435
**Example:** Update an agent by ID
436436

437-
This example uses the [update an agent API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-put-agent-builder-agents-id).
437+
This example uses the [update an agent API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-put-agent-builder-agents-id).
438438

439439
::::{tab-set}
440440
:group: api-examples
@@ -498,7 +498,7 @@ curl -X PUT "https://${KIBANA_URL}/api/agent_builder/agents/{id}" \
498498

499499
**Example:** Delete an agent by ID
500500

501-
This example uses the [delete an agent by ID API](https://www.elastic.co/docs/api/doc/serverless/operation/operation-delete-agent-builder-agents-id).
501+
This example uses the [delete an agent by ID API](https://www.elastic.co/docs/api/doc/kibana/operation/operation-delete-agent-builder-agents-id).
502502

503503
::::{tab-set}
504504
:group: api-examples
@@ -527,7 +527,7 @@ curl -X DELETE "https://${KIBANA_URL}/api/agent_builder/agents/{id}" \
527527

528528
**Example:** Chat with an agent
529529

530-
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).
531531

532532
::::{tab-set}
533533
:group: api-examples
@@ -562,7 +562,7 @@ curl -X POST "https://${KIBANA_URL}/api/agent_builder/converse" \
562562

563563
**Example:** Chat with an agent and stream events
564564

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).
566566

567567
::::{tab-set}
568568
:group: api-examples
@@ -600,7 +600,7 @@ curl -X POST "https://${KIBANA_URL}/api/agent_builder/converse/async" \
600600

601601
**Example:** List conversations
602602

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).
604604

605605
::::{tab-set}
606606
:group: api-examples
@@ -626,7 +626,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/conversations" \
626626

627627
**Example:** Get conversation by ID
628628

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).
630630

631631
::::{tab-set}
632632
:group: api-examples
@@ -652,7 +652,7 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/conversations/{conversation
652652

653653
**Example:** Delete conversation by ID
654654

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).
656656

657657
::::{tab-set}
658658
:group: api-examples
@@ -707,7 +707,7 @@ Refer to [](a2a-server.md) for more information.
707707

708708
**Example:** Get A2A agent card configuration
709709

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).
711711

712712
::::{tab-set}
713713
:group: api-examples
@@ -775,4 +775,4 @@ curl -X GET "https://${KIBANA_URL}/api/agent_builder/a2a/{agentId}.json" \
775775

776776
## API reference
777777

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).

solutions/search/agent-builder/models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Refer to the [OpenAI connector documentation](kibana://reference/connectors-kiba
5151

5252
## Connectors API
5353

54-
For programmatic access to connector management, refer to the [Connectors API documentation]({{kib-serverless-apis}}group/endpoint-connectors).
54+
For programmatic access to connector management, refer to the [Connectors API documentation]({{kib-apis}}group/endpoint-connectors).
5555

5656
## Recommended models
5757

solutions/search/agent-builder/tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ For a quick overview of how to work programmatically with tools, refer to [Tools
195195

196196
### Serverless API reference
197197

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).
199199

200200
## Copy your MCP server URL
201201

0 commit comments

Comments
 (0)