mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-27 09:21:35 +07:00
12 lines
350 B
TypeScript
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`;
|
|
}
|