Skip to content

Commit 8ff6546

Browse files
committed
peer review
- rm adk-only note - fix k shorthand Signed-off-by: Art Berger <[email protected]>
1 parent 516c1eb commit 8ff6546

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/app/docs/kagent/examples/a2a-byo/page.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: "BYO A2A Agents"
2+
title: "BYO ADK Agents"
33
pageOrder: 1
4-
description: "Bring your own A2A agent to kagent"
4+
description: "Bring your own ADK agent to kagent"
55
---
66

77
export const metadata = {
8-
title: "Bringing your own A2A agent to kagent",
9-
description: "Learn how to bring your own A2A agent to kagent",
8+
title: "Bringing your own ADK agent to kagent",
9+
description: "Learn how to bring your own ADK agent to kagent",
1010
author: "kagent.dev"
1111
};
1212

13-
# Bringing your own A2A agent to kagent with ADK
13+
# Bringing your own ADK agent to kagent
1414

15-
Bring your own custom agents. Currently, custom agents must be built with the [Agent Development Kit (ADK)](https://google.github.io/adk-docs/). Such frameworks give you more control over the agent behavior and are well-suited for complex workflows and integration with external systems and APIs.
15+
Bring your own custom agents. This example uses the [Agent Development Kit (ADK)](https://google.github.io/adk-docs/), but you can also try out the [LangGraph guide](/docs/kagent/examples/langchain-byo/). Such frameworks give you more control over the agent behavior and are well-suited for complex workflows and integration with external systems and APIs.
1616

1717
Unlike declarative agents that are defined by kagent resources with components such as system instructions, models, and tools written inline, these BYO agents give you full control over agent logic. If you have your own agent, no need to decompose its functions into separate kagent resources. Kagent can invoke your agent directly through the A2A protocol.
1818

@@ -56,7 +56,7 @@ Now that you have your own custom agent image, you can create a BYO Agent resour
5656
2. Create a secret with the API key.
5757

5858
```bash
59-
kubectl create secret generic kagent-google -n kagent --from-literal=GOOGLE_API_KEY=$GOOGLE_API_KEY --dry-run=client -oyaml | k apply -f -
59+
kubectl create secret generic kagent-google -n kagent --from-literal=GOOGLE_API_KEY=$GOOGLE_API_KEY --dry-run=client -oyaml | kubectl apply -f -
6060
```
6161

6262
3. Create a BYO Agent resource.

src/app/docs/kagent/examples/langchain-byo/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Now that you have your own custom agent image, you can create a BYO Agent resour
5757
```bash
5858
kubectl create secret generic kagent-google -n kagent \
5959
--from-literal=GOOGLE_API_KEY=$GOOGLE_API_KEY \
60-
--dry-run=client -oyaml | k apply -f -
60+
--dry-run=client -oyaml | kubectl apply -f -
6161
```
6262

6363
3. Create a BYO Agent resource.

0 commit comments

Comments
 (0)