feat(plugins): share capability capture helpers

This commit is contained in:
Peter Steinberger
2026-03-16 22:20:52 -07:00
parent 6cbff9e7d3
commit d2445b5fcd
7 changed files with 75 additions and 88 deletions

View File

@@ -183,14 +183,17 @@ export type { OpenClawConfig } from "../config/config.js";
/** @deprecated Use OpenClawConfig instead */
export type { OpenClawConfig as ClawdbotConfig } from "../config/config.js";
export { isDangerousNameMatchingEnabled } from "../config/dangerous-name-matching.js";
export * from "./speech.js";
export type { FileLockHandle, FileLockOptions } from "./file-lock.js";
export { acquireFileLock, withFileLock } from "./file-lock.js";
export * from "./media-understanding.js";
export {
mapAllowlistResolutionInputs,
mapBasicAllowlistResolutionEntries,
type BasicAllowlistResolutionEntry,
} from "./allowlist-resolution.js";
export * from "./provider-web-search.js";
export { resolveRequestUrl } from "./request-url.js";
export {
buildDiscordSendMediaOptions,

View File

@@ -13,7 +13,10 @@ export type {
VideoDescriptionResult,
} from "../media-understanding/types.js";
export { describeImageWithModel, describeImagesWithModel } from "../media-understanding/providers/image.js";
export {
describeImageWithModel,
describeImagesWithModel,
} from "../media-understanding/providers/image.js";
export { transcribeOpenAiCompatibleAudio } from "../media-understanding/providers/openai-compatible-audio.js";
export {
assertOkOrThrowHttpError,