mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 13:10:43 +00:00
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
import { resolveDefaultModelForAgent } from "../agents/model-selection.js";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
|
|
export function resolveCommitmentDefaultModelRef(params: {
|
|
cfg: OpenClawConfig;
|
|
agentId?: string;
|
|
}): { provider: string; model: string } {
|
|
return resolveDefaultModelForAgent(params);
|
|
}
|