mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 10:30:44 +00:00
Keep the Minimax web-search provider artifact metadata-only and move execution, cache, endpoint, and test helpers behind a lazy runtime import. This keeps contract metadata tests from importing the full runtime path.
12 lines
540 B
TypeScript
12 lines
540 B
TypeScript
export {
|
|
buildMinimaxImageGenerationProvider,
|
|
buildMinimaxPortalImageGenerationProvider,
|
|
} from "./image-generation-provider.js";
|
|
export { buildMinimaxMusicGenerationProvider } from "./music-generation-provider.js";
|
|
export {
|
|
minimaxMediaUnderstandingProvider,
|
|
minimaxPortalMediaUnderstandingProvider,
|
|
} from "./media-understanding-provider.js";
|
|
export { __testing as minimaxWebSearchTesting } from "./src/minimax-web-search-provider.runtime.js";
|
|
export { buildMinimaxVideoGenerationProvider } from "./video-generation-provider.js";
|