mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 02:33:08 +00:00
33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
/**
|
|
* @deprecated Public SDK subpath has no bundled extension production imports.
|
|
* Prefer plugin-owned music provider surfaces until a current shared contract
|
|
* is needed by bundled extensions.
|
|
*/
|
|
|
|
export type { AuthProfileStore } from "../agents/auth-profiles/types.js";
|
|
export type { FallbackAttempt } from "../agents/model-fallback.types.js";
|
|
export type { OpenClawConfig } from "../config/types.openclaw.js";
|
|
export type { MusicGenerationProviderPlugin } from "../plugins/types.js";
|
|
export type {
|
|
GeneratedMusicAsset,
|
|
MusicGenerationOutputFormat,
|
|
MusicGenerationProvider,
|
|
MusicGenerationProviderCapabilities,
|
|
MusicGenerationRequest,
|
|
MusicGenerationResult,
|
|
MusicGenerationSourceImage,
|
|
} from "../music-generation/types.js";
|
|
|
|
export { describeFailoverError, isFailoverError } from "../agents/failover-error.js";
|
|
export {
|
|
resolveAgentModelFallbackValues,
|
|
resolveAgentModelPrimaryValue,
|
|
} from "../config/model-input.js";
|
|
export { createSubsystemLogger } from "../logging/subsystem.js";
|
|
export { parseMusicGenerationModelRef } from "../music-generation/model-ref.js";
|
|
export {
|
|
getMusicGenerationProvider,
|
|
listMusicGenerationProviders,
|
|
} from "../music-generation/provider-registry.js";
|
|
export { getProviderEnvVars } from "../secrets/provider-env-vars.js";
|