Files
openclaw/src/config/talk-defaults.ts
2026-03-08 14:58:29 +00:00

12 lines
350 B
TypeScript

export const TALK_SILENCE_TIMEOUT_MS_BY_PLATFORM = {
macos: 700,
android: 700,
ios: 900,
} as const;
export function describeTalkSilenceTimeoutDefaults(): string {
const macos = TALK_SILENCE_TIMEOUT_MS_BY_PLATFORM.macos;
const ios = TALK_SILENCE_TIMEOUT_MS_BY_PLATFORM.ios;
return `${macos} ms on macOS and Android, ${ios} ms on iOS`;
}