diff --git a/src/app/docs/kagent/getting-started/system-prompts/page.mdx b/src/app/docs/kagent/getting-started/system-prompts/page.mdx index 34bf83a..5d1b404 100644 --- a/src/app/docs/kagent/getting-started/system-prompts/page.mdx +++ b/src/app/docs/kagent/getting-started/system-prompts/page.mdx @@ -89,7 +89,7 @@ This will work with any resource yaml manifest, or link to a file containing the It will also work with individual resource names, or a list of resource names. ``` -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. +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. 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. diff --git a/src/app/docs/kagent/operations/debug/page.mdx b/src/app/docs/kagent/operations/debug/page.mdx index 3d01b7f..54db99d 100644 --- a/src/app/docs/kagent/operations/debug/page.mdx +++ b/src/app/docs/kagent/operations/debug/page.mdx @@ -29,8 +29,8 @@ This should give you the reason why the agent was rejected. If it's not there, you can try to get the logs of the agent: ```shell -kubectl logs -n kagent deployment/kagent -c controller -kubectl logs -n kagent deployment/kagent -c app +kubectl logs -n kagent deployment/kagent-controller +kubectl logs -n kagent deployment/kagent-ui ``` 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: ``` 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! -