mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-23 02:18:12 +00:00
Adds the bundled Inworld speech provider with docs, config surface, SSRF-guarded fetches, directive overrides, native voice-note/telephony output coverage, and live `.profile` verification. Co-authored-by: cshape <cshape@users.noreply.github.com>
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
export function shouldExpectNativeJitiForJavaScriptTestRuntime(): boolean {
|
|
return (
|
|
typeof (process.versions as { bun?: string }).bun !== "string" && process.platform !== "win32"
|
|
);
|
|
}
|