Files
openclaw/extensions/minimax/test-api.ts
Gustavo Madeira Santana 41ee813a45 test: lazy-load minimax web search runtime
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.
2026-04-17 18:08:23 -04:00

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";