fix: break plugin-sdk provider barrel recursion

This commit is contained in:
Peter Steinberger
2026-03-27 23:45:20 +00:00
parent ac68494dae
commit b39a7e8073
62 changed files with 120 additions and 59 deletions

View File

@@ -1,7 +1,7 @@
import type {
ModelDefinitionConfig,
ModelProviderConfig,
} from "openclaw/plugin-sdk/provider-models";
} from "openclaw/plugin-sdk/provider-model-shared";
export const MODELSTUDIO_BASE_URL = "https://coding-intl.dashscope.aliyuncs.com/v1";
export const MODELSTUDIO_GLOBAL_BASE_URL = MODELSTUDIO_BASE_URL;

View File

@@ -1,4 +1,4 @@
import type { ModelProviderConfig } from "openclaw/plugin-sdk/provider-models";
import type { ModelProviderConfig } from "openclaw/plugin-sdk/provider-model-shared";
import { MODELSTUDIO_BASE_URL, MODELSTUDIO_MODEL_CATALOG } from "./models.js";
export function buildModelStudioProvider(): ModelProviderConfig {