mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-14 13:20:47 +00:00
24 lines
697 B
TypeScript
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),
|
|
};
|
|
}
|