mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 14:30:45 +00:00
13 lines
501 B
TypeScript
13 lines
501 B
TypeScript
import { buildManifestModelProviderConfig } from "openclaw/plugin-sdk/provider-catalog-shared";
|
|
import type { ModelProviderConfig } from "openclaw/plugin-sdk/provider-model-shared";
|
|
import manifest from "./openclaw.plugin.json" with { type: "json" };
|
|
|
|
export const XIAOMI_DEFAULT_MODEL_ID = "mimo-v2-flash";
|
|
|
|
export function buildXiaomiProvider(): ModelProviderConfig {
|
|
return buildManifestModelProviderConfig({
|
|
providerId: "xiaomi",
|
|
catalog: manifest.modelCatalog.providers.xiaomi,
|
|
});
|
|
}
|