Skip to content

Commit 7c04e8c

Browse files
authored
Merge pull request #294 from eitansuez/esuez/minor-fixes
Esuez/minor fixes
2 parents e0d5784 + a4035d4 commit 7c04e8c

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

  • src/app/docs/kagent

src/app/docs/kagent/getting-started/system-prompts/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ This will work with any resource yaml manifest, or link to a file containing the
8989
It will also work with individual resource names, or a list of resource names.
9090
```
9191

92-
Ok, now we have a much better prompt. The agent will now better understand how and when to use the tools, in response to it's own internal queries, or user prompts.
92+
Ok, now we have a much better prompt. The agent will now better understand how and when to use the tools, in response to its own internal queries, or user prompts.
9393

9494
We can still do better. One major thing that was left out of the above prompt is the agent's behavior. LLMs are statistical models that output the most likely next token, this means that being explicit about the agent's behavior makes it more likely that the agent will behave as expected.
9595

src/app/docs/kagent/operations/debug/page.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ This should give you the reason why the agent was rejected.
2929
If it's not there, you can try to get the logs of the agent:
3030

3131
```shell
32-
kubectl logs -n kagent deployment/kagent -c controller
33-
kubectl logs -n kagent deployment/kagent -c app
32+
kubectl logs -n kagent deployment/kagent-controller
33+
kubectl logs -n kagent deployment/kagent-ui
3434
```
3535

3636
You can also set the logging level to `DEBUG` to get more detailed logs from the agent pod. To do that, edit the agent resource and add the `LOG_LEVEL` environment variable to the `deployment` field:
@@ -46,4 +46,3 @@ spec:
4646
```
4747

4848
You can also ask for help in the [community](https://discord.gg/Fu3k65f2k3) or log an issue on [GitHub](https://github.com/kagent-dev/kagent). You can create a bug report using the kagent CLI by running `kagent bug-report`. Before attaching files to your bug report, make sure they don't contain any sensitive information!
49-

0 commit comments

Comments
 (0)