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
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ spec:
- description: Max tokens for response. The default is 2048 tokens.
displayName: Max Tokens For Response
path: llm.providers[0].models[0].parameters.maxTokensForResponse
- description: Whether the model accepts the temperature parameter. Leave unset for models that support it; set to false for models that reject it (e.g. claude-sonnet-5). When unset, the service default (true) applies.
displayName: Temperature Supported
path: llm.providers[0].models[0].parameters.temperatureSupported
- description: Ratio of context window size allocated for tool token budget. Must be between 0.1 and 0.5. The default is 0.5.
displayName: Tool Budget Ratio
path: llm.providers[0].models[0].parameters.toolBudgetRatio
Expand Down
6 changes: 6 additions & 0 deletions bundle/manifests/ols.openshift.io_olsconfigs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,12 @@ spec:
description: Max tokens for response. The default
is 2048 tokens.
type: integer
temperatureSupported:
description: |-
Whether the model accepts the temperature parameter. Leave unset for models
that support it; set to false for models that reject it (e.g. claude-sonnet-5).
When unset, the service default (true) applies.
type: boolean
toolBudgetRatio:
default: 0.5
description: Ratio of context window size allocated
Expand Down