mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-31 11:51:22 +00:00
21 lines
615 B
TypeScript
21 lines
615 B
TypeScript
// Public media-understanding helpers and types for provider plugins.
|
|
|
|
export type {
|
|
AudioTranscriptionRequest,
|
|
AudioTranscriptionResult,
|
|
ImageDescriptionRequest,
|
|
ImageDescriptionResult,
|
|
ImagesDescriptionInput,
|
|
ImagesDescriptionRequest,
|
|
ImagesDescriptionResult,
|
|
MediaUnderstandingProvider,
|
|
VideoDescriptionRequest,
|
|
VideoDescriptionResult,
|
|
} from "../media-understanding/types.js";
|
|
|
|
export {
|
|
describeImageWithModel,
|
|
describeImagesWithModel,
|
|
} from "../media-understanding/image-runtime.js";
|
|
export { transcribeOpenAiCompatibleAudio } from "../media-understanding/openai-compatible-audio.js";
|