Skip to content
Merged
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
2 changes: 1 addition & 1 deletion packs/openclaw/resources/config-gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
cfg = {
"models": {"providers": {"amazon-bedrock": {"baseUrl": f"https://bedrock-runtime.{bedrock_region}.amazonaws.com", "auth": "aws-sdk", "api": "bedrock-converse-stream", "models": bedrock_models}}},
"plugins": {"entries": {"amazon-bedrock": {"enabled": True, "config": {"discovery": {"enabled": True}}}}},
"agents": {"defaults": {"model": {"primary": PRIMARY_MODEL, "fallbacks": [FALLBACK_MODEL]}, "workspace": f"{home}/.openclaw/workspace", "compaction": {"mode": "safeguard"}, "heartbeat": {"model": HEARTBEAT_MODEL, "target": "telegram", "every": "30m", "lightContext": True, "isolatedSession": True}, "maxConcurrent": 4, "subagents": {"maxConcurrent": 8}}},
"agents": {"defaults": {"model": {"primary": PRIMARY_MODEL, "fallbacks": [FALLBACK_MODEL]}, "workspace": f"{home}/.openclaw/workspace", "compaction": {"mode": "safeguard"}, "memorySearch": {"provider": "bedrock", "model": "amazon.titan-embed-text-v2:0"}, "heartbeat": {"model": HEARTBEAT_MODEL, "target": "telegram", "every": "30m", "lightContext": True, "isolatedSession": True}, "maxConcurrent": 4, "subagents": {"maxConcurrent": 8}}},

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Drop the stale bedrockify dependency

Because this switches memory search to the native Bedrock embedding provider, the OpenClaw pack no longer needs the proxy, but fresh deploys still install registry dependencies first: packs/registry.yaml still lists bedrockify for openclaw, and deploy/bootstrap.sh runs those deps before the pack installer. In any fresh OpenClaw install where the bedrockify download or daemon health check fails, bootstrap aborts before this config is ever written even though the new path does not use bedrockify. Please remove or update that dependency alongside this config change.

Useful? React with 👍 / 👎.

"tools": {"web": {"search": {"enabled": False}, "fetch": {"enabled": True}}},
"hooks": {"internal": {"enabled": True, "entries": {"boot-md": {"enabled": True}, "bootstrap-extra-files": {"enabled": True}, "command-logger": {"enabled": True}, "session-memory": {"enabled": True}}}},
"gateway": {"port": int(gw_port), "mode": "local", "bind": "loopback", "auth": {"mode": "token", "token": gw_token}}
Expand Down