Files
openclaw/extensions/voice-call/src/response-model.ts
2026-04-04 14:06:52 +09:00

24 lines
697 B
TypeScript

import type { VoiceCallConfig } from "./config.js";
import type { CoreAgentDeps } from "./core-bridge.js";
export function resolveVoiceResponseModel(params: {
voiceConfig: VoiceCallConfig;
agentRuntime: CoreAgentDeps;
}): {
modelRef: string;
provider: string;
model: string;
} {
const modelRef =
params.voiceConfig.responseModel ??
`${params.agentRuntime.defaults.provider}/${params.agentRuntime.defaults.model}`;
const slashIndex = modelRef.indexOf("/");
return {
modelRef,
provider:
slashIndex === -1 ? params.agentRuntime.defaults.provider : modelRef.slice(0, slashIndex),
model: slashIndex === -1 ? modelRef : modelRef.slice(slashIndex + 1),
};
}