π Prerequisites
π Feature Summary
Allow for Bedrock models to configure specific settings
β Problem Statement / Motivation
When running kagent with Claude 4.6 on Bedrock token consumption is massive compared to using claude code. It would be great if we can configure settings like effort and such.
π‘ Proposed Solution
It would be great if following could be configured.
~/.claude/settings.json
{
"awsAuthRefresh": "aws sso login --profile eks-testing-admin",
"env": {
"AWS_PROFILE": "bedrock",
"AWS_REGION": "us-east-1",
"CLAUDE_CODE_USE_BEDROCK": "true",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "us.anthropic.claude-opus-4-6-v1",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "us.anthropic.claude-sonnet-4-6",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "us.anthropic.claude-haiku-4-5-20251001-v1:0"
},
"model": "sonnet",
"enabledPlugins": {
"gopls-lsp@claude-plugins-official": true,
"example-skills@anthropic-agent-skills": true
},
"effortLevel": "medium",
"thinking": {
"type": "adaptive",
"display": "summarized"
}
}
So users can define the model, effort and thinking parameters.
π Alternatives Considered
N.A.
π― Affected Service(s)
Not Sure
π Additional Context
Normally my sonnet 4.6 cost is averaging at 15-20$ a day when doing all kind of development tasks.
With kagent this cost π went to 80-195$ a day for similar prompts like:
Figure out the root cause for crashing pods in namespace-x
In kagent I prompted way less then I do in my local claude-code.
π Are you willing to contribute?
π Prerequisites
π Feature Summary
Allow for Bedrock models to configure specific settings
β Problem Statement / Motivation
When running kagent with Claude 4.6 on Bedrock token consumption is massive compared to using claude code. It would be great if we can configure settings like effort and such.
π‘ Proposed Solution
It would be great if following could be configured.
~/.claude/settings.json
{ "awsAuthRefresh": "aws sso login --profile eks-testing-admin", "env": { "AWS_PROFILE": "bedrock", "AWS_REGION": "us-east-1", "CLAUDE_CODE_USE_BEDROCK": "true", "ANTHROPIC_DEFAULT_OPUS_MODEL": "us.anthropic.claude-opus-4-6-v1", "ANTHROPIC_DEFAULT_SONNET_MODEL": "us.anthropic.claude-sonnet-4-6", "ANTHROPIC_DEFAULT_HAIKU_MODEL": "us.anthropic.claude-haiku-4-5-20251001-v1:0" }, "model": "sonnet", "enabledPlugins": { "gopls-lsp@claude-plugins-official": true, "example-skills@anthropic-agent-skills": true }, "effortLevel": "medium", "thinking": { "type": "adaptive", "display": "summarized" } }So users can define the model, effort and thinking parameters.
π Alternatives Considered
N.A.
π― Affected Service(s)
Not Sure
π Additional Context
Normally my sonnet 4.6 cost is averaging at 15-20$ a day when doing all kind of development tasks.
With kagent this cost π went to 80-195$ a day for similar prompts like:
In kagent I prompted way less then I do in my local claude-code.
π Are you willing to contribute?