mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-03 21:31:26 +00:00
* feat(amazon-bedrock): just the kiro plans, need to remove before PR * docs(bedrock-guardrails): add environment setup instructions * docs(bedrock-guardrails): mark environment setup tasks as completed * feat(amazon-bedrock): add trace configuration to guardrail settings * feat(amazon-bedrock): implement guardrail wrapper factory and wire into registration * test(amazon-bedrock): add comprehensive guardrail configuration tests * docs(bedrock): add guardrails configuration documentation * docs(bedrock-guardrails): add comprehensive manual testing guide for Docker deployment * docs(bedrock-guardrails): expand manual testing guide with STS credentials and config options * docs(bedrock-guardrails): complete manual testing verification with 8 test scenarios * chore: remove kiro spec files from PR * fix(docs): correct guardrail config path to plugins.entries.*.config * style: format docs and test files
23 lines
672 B
JSON
23 lines
672 B
JSON
{
|
|
"id": "amazon-bedrock",
|
|
"enabledByDefault": true,
|
|
"providers": ["amazon-bedrock"],
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"guardrail": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"guardrailIdentifier": { "type": "string" },
|
|
"guardrailVersion": { "type": "string" },
|
|
"streamProcessingMode": { "type": "string", "enum": ["sync", "async"] },
|
|
"trace": { "type": "string", "enum": ["enabled", "disabled", "enabled_full"] }
|
|
},
|
|
"required": ["guardrailIdentifier", "guardrailVersion"]
|
|
}
|
|
}
|
|
}
|
|
}
|