mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-22 07:20:59 +00:00
22 lines
790 B
TypeScript
22 lines
790 B
TypeScript
// Public Voice Call plugin helpers.
|
|
// Keep this surface narrow and limited to the voice-call feature contract.
|
|
|
|
export { definePluginEntry } from "./core.js";
|
|
export {
|
|
TtsAutoSchema,
|
|
TtsConfigSchema,
|
|
TtsModeSchema,
|
|
TtsProviderSchema,
|
|
} from "../config/zod-schema.core.js";
|
|
export { resolveOpenAITtsInstructions } from "../tts/tts-core.js";
|
|
export type { GatewayRequestHandlerOptions } from "../gateway/server-methods/types.js";
|
|
export {
|
|
isRequestBodyLimitError,
|
|
readRequestBodyWithLimit,
|
|
requestBodyErrorToText,
|
|
} from "../infra/http-body.js";
|
|
export { fetchWithSsrFGuard } from "../infra/net/fetch-guard.js";
|
|
export type { SessionEntry } from "../config/sessions/types.js";
|
|
export type { OpenClawPluginApi } from "../plugins/types.js";
|
|
export { sleep } from "../utils.js";
|