openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
180 lines (179 loc) • 7.85 kB
JavaScript
import { c as isRecord } from "./utils-CCC-BEJH.js";
import { n as ensureAuthProfileStore } from "./store-C8spD0DG.js";
import { r as externalCliDiscoveryForProviderAuth } from "./external-cli-discovery-Cr-vJMRB.js";
import { n as listProfilesForProvider } from "./profile-list-DI8_o0Rw.js";
import { g as resolveToolProfilePolicy, l as mergeAlsoAllowPolicy } from "./tool-policy-CpBMaMTY.js";
import { t as isToolAllowedByPolicies } from "./tool-policy-match-Dj5a1jle.js";
import { o as resolveSubagentCapabilityStore, t as isSubagentEnvelopeSession } from "./subagent-capabilities-Cva3gXJL.js";
import { i as resolveInheritedToolPolicyForSession, n as resolveEffectiveToolPolicy, o as resolveSubagentToolPolicyForSession, r as resolveGroupToolPolicy } from "./agent-tools.policy-dtD_g0G1.js";
import { t as resolveSenderToolPolicy } from "./sender-tool-policy-B7LKaG9D.js";
import { n as resolveCodexNativeWebSearchConfig } from "./codex-native-web-search.shared-xyjcKUq2.js";
//#region src/agents/codex-native-web-search-core.ts
const OPENAI_AUTH_PROVIDER_IDS = ["openai"];
function isOpenAIAuthProviderId(provider) {
return OPENAI_AUTH_PROVIDER_IDS.some((candidate) => candidate === provider);
}
/** Returns whether a model API can accept the native Codex web_search tool. */
function isCodexNativeSearchEligibleModel(params) {
return params.modelApi === "openai-chatgpt-responses";
}
function hasCodexNativeWebSearchTool(tools) {
if (!Array.isArray(tools)) return false;
return tools.some((tool) => isRecord(tool) && typeof tool.type === "string" && tool.type === "web_search");
}
/** Checks whether OpenAI/Codex auth is available for native web search. */
function hasAvailableCodexAuth(params) {
if (Object.values(params.config?.auth?.profiles ?? {}).some((profile) => isRecord(profile) && isOpenAIAuthProviderId(profile.provider) && (profile.mode === "oauth" || profile.mode === "token"))) return true;
if (params.agentDir) try {
const store = ensureAuthProfileStore(params.agentDir, { externalCli: externalCliDiscoveryForProviderAuth({
cfg: params.config,
provider: "openai"
}) });
if (OPENAI_AUTH_PROVIDER_IDS.some((provider) => listProfilesForProvider(store, provider).length > 0)) return true;
} catch {}
return false;
}
/** Resolves whether native search is active or why managed search should remain. */
function resolveCodexNativeSearchActivation(params) {
const globalWebSearchEnabled = params.config?.tools?.web?.search?.enabled !== false;
const codexConfig = resolveCodexNativeWebSearchConfig(params.config);
const nativeEligible = isCodexNativeSearchEligibleModel(params);
const hasRequiredAuth = params.modelApi !== "openai-chatgpt-responses" || !isOpenAIAuthProviderId(params.modelProvider) || hasAvailableCodexAuth(params);
if (!globalWebSearchEnabled) return {
globalWebSearchEnabled,
codexNativeEnabled: codexConfig.enabled,
codexMode: codexConfig.mode,
nativeEligible,
hasRequiredAuth,
state: "managed_only",
inactiveReason: "globally_disabled"
};
if (!codexConfig.enabled) return {
globalWebSearchEnabled,
codexNativeEnabled: false,
codexMode: codexConfig.mode,
nativeEligible,
hasRequiredAuth,
state: "managed_only",
inactiveReason: "codex_not_enabled"
};
if (!nativeEligible) return {
globalWebSearchEnabled,
codexNativeEnabled: true,
codexMode: codexConfig.mode,
nativeEligible: false,
hasRequiredAuth,
state: "managed_only",
inactiveReason: "model_not_eligible"
};
if (!hasRequiredAuth) return {
globalWebSearchEnabled,
codexNativeEnabled: true,
codexMode: codexConfig.mode,
nativeEligible: true,
hasRequiredAuth: false,
state: "managed_only",
inactiveReason: "codex_auth_missing"
};
if (!isNativeWebSearchAllowedByToolPolicy(params)) return {
globalWebSearchEnabled,
codexNativeEnabled: true,
codexMode: codexConfig.mode,
nativeEligible: true,
hasRequiredAuth: true,
state: "managed_only",
inactiveReason: "tool_policy_denied"
};
return {
globalWebSearchEnabled,
codexNativeEnabled: true,
codexMode: codexConfig.mode,
nativeEligible: true,
hasRequiredAuth: true,
state: "native_active"
};
}
function isNativeWebSearchAllowedByToolPolicy(params) {
const { agentId, globalPolicy, globalProviderPolicy, agentPolicy, agentProviderPolicy, profile, providerProfile, profileAlsoAllow, providerProfileAlsoAllow } = resolveEffectiveToolPolicy({
config: params.config,
sessionKey: params.sessionKey,
agentId: params.agentId,
modelProvider: params.modelProvider,
modelId: params.modelId
});
const profilePolicy = mergeAlsoAllowPolicy(resolveToolProfilePolicy(profile), profileAlsoAllow);
const providerProfilePolicy = mergeAlsoAllowPolicy(resolveToolProfilePolicy(providerProfile), providerProfileAlsoAllow);
const groupPolicy = resolveGroupToolPolicy({
config: params.config,
sessionKey: params.sessionKey,
spawnedBy: params.spawnedBy,
messageProvider: params.messageProvider,
groupId: params.groupId,
groupChannel: params.groupChannel,
groupSpace: params.groupSpace,
accountId: params.agentAccountId,
senderId: params.senderId,
senderName: params.senderName,
senderUsername: params.senderUsername,
senderE164: params.senderE164
});
const senderPolicy = resolveSenderToolPolicy({
config: params.config,
agentId,
messageProvider: params.messageProvider,
senderId: params.senderId,
senderName: params.senderName,
senderUsername: params.senderUsername,
senderE164: params.senderE164
});
const subagentStore = resolveSubagentCapabilityStore(params.sessionKey, { cfg: params.config });
const subagentPolicy = params.sessionKey && isSubagentEnvelopeSession(params.sessionKey, {
cfg: params.config,
store: subagentStore
}) ? resolveSubagentToolPolicyForSession(params.config, params.sessionKey, { store: subagentStore }) : void 0;
const inheritedToolPolicy = resolveInheritedToolPolicyForSession(params.config, params.sessionKey, { store: subagentStore });
return isToolAllowedByPolicies("web_search", [
profilePolicy,
providerProfilePolicy,
globalPolicy,
globalProviderPolicy,
agentPolicy,
agentProviderPolicy,
groupPolicy,
senderPolicy,
params.sandboxToolPolicy,
subagentPolicy,
inheritedToolPolicy
]);
}
/** Builds the OpenAI Responses `web_search` tool payload from config. */
function buildCodexNativeWebSearchTool(config) {
const nativeConfig = resolveCodexNativeWebSearchConfig(config);
const tool = {
type: "web_search",
external_web_access: nativeConfig.mode === "live"
};
if (nativeConfig.allowedDomains) tool.filters = { allowed_domains: nativeConfig.allowedDomains };
if (nativeConfig.contextSize) tool.search_context_size = nativeConfig.contextSize;
if (nativeConfig.userLocation) tool.user_location = {
type: "approximate",
...nativeConfig.userLocation
};
return tool;
}
/** Injects a native Codex web-search tool into a mutable provider payload. */
function patchCodexNativeWebSearchPayload(params) {
if (!isRecord(params.payload)) return { status: "payload_not_object" };
const payload = params.payload;
if (hasCodexNativeWebSearchTool(payload.tools)) return { status: "native_tool_already_present" };
const tools = Array.isArray(payload.tools) ? [...payload.tools] : [];
tools.push(buildCodexNativeWebSearchTool(params.config));
payload.tools = tools;
return { status: "injected" };
}
/** Returns whether the managed OpenClaw web-search tool should be hidden. */
function shouldSuppressManagedWebSearchTool(params) {
return resolveCodexNativeSearchActivation(params).state === "native_active";
}
//#endregion
export { patchCodexNativeWebSearchPayload as a, isNativeWebSearchAllowedByToolPolicy as i, hasAvailableCodexAuth as n, resolveCodexNativeSearchActivation as o, isCodexNativeSearchEligibleModel as r, shouldSuppressManagedWebSearchTool as s, buildCodexNativeWebSearchTool as t };