Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 3 additions & 36 deletions src/app/docs/kagent/getting-started/quickstart/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ To run the AI agents you'll also need an [OpenAI](https://openai.com) API key. Y
curl https://raw.githubusercontent.com/kagent-dev/kagent/refs/heads/main/scripts/get-kagent | bash
```

3. Install kagent to the cluster by using the CLI. By default, kagent installs a demo profile with agents and MCP tools preloaded for you. If you don't want these default agents, include the `--profile minimal` flag.
3. Install kagent to the cluster by using the CLI. The following command installs a demo profile with agents and MCP tools preloaded for you. If you don't want these default agents, include the `--profile minimal` flag.

```bash
kagent install
kagent install --profile demo
```

Example output:
Expand Down Expand Up @@ -143,41 +143,8 @@ Interact with kagent in your terminal.
```shell
kagent invoke -t "What Helm charts are in my cluster?" --agent helm-agent
```

Example output:

```console
Event Type: ToolCall(s)
Source: helm_agent
+---+--------------------+-----------------------------------------+
| # | NAME | ARGUMENTS |
+---+--------------------+-----------------------------------------+
| 0 | helm_list_releases | {"all_namespaces":true,"deployed":true} |
+---+--------------------+-----------------------------------------+
----------------------------------

Event Type: TextMessage
Source: helm_agent

I found the following Helm release deployed across all namespaces:

- **Release Name:** kagent
- **Namespace:** kagent
- **Revision:** 11
- **Updated:** 2025-03-13 19:18:49 UTC
- **Status:** Deployed
- **Chart:** kagent-v0.0.18-4-g4926e59-dirty

If you need more details about any specific release, let me know!
----------------------------------

Usage: Prompt Tokens: 6573, Completion Tokens: 229
helm-agent--test>
```

As you can see from the example, the agent found the `kagent` Helm chart release. If anything else is running in your cluster, it will probably find that too.

Now, keep chatting with the agent to see what other things it can do :)
In the output, verify that the agent found the `kagent` Helm chart release. If any other Helm charts are in your cluster, it finds those, too. Keep chatting with the agent to see what other things it can do :)

## Next Steps

Expand Down
4 changes: 2 additions & 2 deletions src/app/docs/kagent/introduction/installation/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ Install kagent by using the kagent CLI or Helm.
curl https://raw.githubusercontent.com/kagent-dev/kagent/refs/heads/main/scripts/get-kagent | bash
```

3. Install kagent to the cluster by using the CLI. By default, kagent installs a demo profile with agents and MCP tools preloaded for you. If you don't want these default agents, include the `--profile minimal` flag.
3. Install kagent to the cluster by using the CLI. The following command installs a demo profile with agents and MCP tools preloaded for you. If you don't want these default agents, include the `--profile minimal` flag.

```bash
kagent install
kagent install --profile demo
```

```console
Expand Down
Loading