Merged via /review-pr -> /prepare-pr -> /merge-pr. Prepared head SHA: 0f272b102763736001a82cfda23f35ff2ee9cac8 Co-authored-by: bianbiandashen <16240681+bianbiandashen@users.noreply.github.com> Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com> Reviewed-by: @gumadeiras
57 lines
2.0 KiB
TypeScript
57 lines
2.0 KiB
TypeScript
import { ensureAuthProfileStore, listProfilesForProvider } from "../agents/auth-profiles.js";
|
|
import { getCustomProviderApiKey, resolveEnvApiKey } from "../agents/model-auth.js";
|
|
import { loadModelCatalog } from "../agents/model-catalog.js";
|
|
import { resolveDefaultModelForAgent } from "../agents/model-selection.js";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import type { WizardPrompter } from "../wizard/prompts.js";
|
|
import { OPENAI_CODEX_DEFAULT_MODEL } from "./openai-codex-model-default.js";
|
|
|
|
export async function warnIfModelConfigLooksOff(
|
|
config: OpenClawConfig,
|
|
prompter: WizardPrompter,
|
|
options?: { agentId?: string; agentDir?: string },
|
|
) {
|
|
const ref = resolveDefaultModelForAgent({
|
|
cfg: config,
|
|
agentId: options?.agentId,
|
|
});
|
|
const warnings: string[] = [];
|
|
const catalog = await loadModelCatalog({
|
|
config,
|
|
useCache: false,
|
|
});
|
|
if (catalog.length > 0) {
|
|
const known = catalog.some(
|
|
(entry) => entry.provider === ref.provider && entry.id === ref.model,
|
|
);
|
|
if (!known) {
|
|
warnings.push(
|
|
`Model not found: ${ref.provider}/${ref.model}. Update agents.defaults.model or run /models list.`,
|
|
);
|
|
}
|
|
}
|
|
|
|
const store = ensureAuthProfileStore(options?.agentDir);
|
|
const hasProfile = listProfilesForProvider(store, ref.provider).length > 0;
|
|
const envKey = resolveEnvApiKey(ref.provider);
|
|
const customKey = getCustomProviderApiKey(config, ref.provider);
|
|
if (!hasProfile && !envKey && !customKey) {
|
|
warnings.push(
|
|
`No auth configured for provider "${ref.provider}". The agent may fail until credentials are added.`,
|
|
);
|
|
}
|
|
|
|
if (ref.provider === "openai") {
|
|
const hasCodex = listProfilesForProvider(store, "openai-codex").length > 0;
|
|
if (hasCodex) {
|
|
warnings.push(
|
|
`Detected OpenAI Codex OAuth. Consider setting agents.defaults.model to ${OPENAI_CODEX_DEFAULT_MODEL}.`,
|
|
);
|
|
}
|
|
}
|
|
|
|
if (warnings.length > 0) {
|
|
await prompter.note(warnings.join("\n"), "Model check");
|
|
}
|
|
}
|