mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-03 20:40:23 +00:00
4 lines
173 B
TypeScript
4 lines
173 B
TypeScript
export function canonicalizeSecretTargetCoverageId(id: string): string {
|
|
return id === "tools.web.x_search.apiKey" ? "plugins.entries.xai.config.webSearch.apiKey" : id;
|
|
}
|