Skip to content
Open
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
3 changes: 2 additions & 1 deletion src/app/docs/kagent/resources/api-ref/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,8 @@ _Appears in:_
| `baseUrl` _string_ | Base URL for the OpenAI API (overrides default) | | |
| `organization` _string_ | Organization ID for the OpenAI API | | |
| `temperature` _string_ | Temperature for sampling | | |
| `maxTokens` _integer_ | Maximum tokens to generate | | |
| `maxTokens` _integer_ | Maximum tokens to generate. Sent as the OpenAI `max_tokens` request<br />parameter, which is deprecated and rejected by reasoning models<br />(GPT-5 / o-series). For those models set maxCompletionTokens instead.<br />Mutually exclusive with maxCompletionTokens. | | Minimum: 1 <br /> |
| `maxCompletionTokens` _integer_ | Maximum completion tokens to generate. Sent as the OpenAI<br />`max_completion_tokens` request parameter (an upper bound on visible<br />output plus reasoning tokens). This is the parameter reasoning models<br />(GPT-5 / o-series) require in place of the deprecated maxTokens.<br />Mutually exclusive with maxTokens. | | Minimum: 1 <br /> |
| `topP` _string_ | Top-p sampling parameter | | |
| `frequencyPenalty` _string_ | Frequency penalty | | |
| `presencePenalty` _string_ | Presence penalty | | |
Expand Down
3 changes: 3 additions & 0 deletions src/app/docs/kagent/resources/helm/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ A Helm chart for kagent, built with Google ADK
| controller.agentDeployment.podLabels | object | {} (no extra labels) | Default labels applied to all agent pod templates. Per-agent labels in the Agent CRD take precedence over these defaults. |
| controller.agentDeployment.serviceAccountName | string | "" (auto-create per-agent ServiceAccount) | Default ServiceAccount name for agent pods. When set, agent pods that don't specify an explicit serviceAccountName will use this ServiceAccount instead of creating a per-agent one. Useful for Workload Identity (GCP, AWS IRSA, Azure Workload Identity). Precedence: agent-level serviceAccountName > this default > auto-created SA. |
| controller.agentImage.pullPolicy | string | `""` | |
| controller.agentImage.pullSecret | string | `""` | Image pull secret name set on agent pods created by the controller |
| controller.agentImage.registry | string | `""` | |
| controller.agentImage.repository | string | `"kagent-dev/kagent/app"` | |
| controller.agentImage.tag | string | `""` | |
Expand All @@ -88,6 +89,7 @@ A Helm chart for kagent, built with Google ADK
| controller.auth.userIdClaim | string | `""` | |
| controller.env | list | `[]` | |
| controller.envFrom | list | `[]` | |
| controller.goAgentImage | object | `{"pullPolicy":"","registry":"","repository":"kagent-dev/kagent/golang-adk","tag":""}` | The image used for the Go (ADK) runtime agent. |
| controller.image.pullPolicy | string | `""` | |
| controller.image.registry | string | `""` | |
| controller.image.repository | string | `"kagent-dev/kagent/controller"` | |
Expand Down Expand Up @@ -271,6 +273,7 @@ A Helm chart for kagent, built with Google ADK
| promql-agent.resources.limits.memory | string | `"256Mi"` | |
| promql-agent.resources.requests.cpu | string | `"50m"` | |
| promql-agent.resources.requests.memory | string | `"128Mi"` | |
| providers.annotations | object | `{}` | Annotations added to the metadata of the generated default ModelConfig (the one derived from `providers.default`). Omitted from the resource when empty. |
| providers.anthropic.apiKeySecretKey | string | `"ANTHROPIC_API_KEY"` | |
| providers.anthropic.apiKeySecretRef | string | `"kagent-anthropic"` | |
| providers.anthropic.model | string | `"claude-haiku-4-5"` | |
Expand Down