mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
/**
|
|
* Chutes provider builders for static and dynamically discovered catalogs.
|
|
*/
|
|
import type { ModelProviderConfig } from "openclaw/plugin-sdk/provider-model-shared";
|
|
import {
|
|
CHUTES_BASE_URL,
|
|
CHUTES_MODEL_CATALOG,
|
|
buildChutesModelDefinition,
|
|
discoverChutesModels,
|
|
} from "./models.js";
|
|
|
|
/** Builds the static Chutes provider catalog from bundled model metadata. */
|
|
export function buildStaticChutesProvider(): ModelProviderConfig {
|
|
return {
|
|
baseUrl: CHUTES_BASE_URL,
|
|
api: "openai-completions",
|
|
models: CHUTES_MODEL_CATALOG.map(buildChutesModelDefinition),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Build the Chutes provider with dynamic model discovery.
|
|
* Falls back to the static catalog on failure.
|
|
* Accepts an optional access token (API key or OAuth access token) for authenticated discovery.
|
|
*/
|
|
export async function buildChutesProvider(accessToken?: string): Promise<ModelProviderConfig> {
|
|
const models = await discoverChutesModels(accessToken);
|
|
return {
|
|
baseUrl: CHUTES_BASE_URL,
|
|
api: "openai-completions",
|
|
models: models.length > 0 ? models : CHUTES_MODEL_CATALOG.map(buildChutesModelDefinition),
|
|
};
|
|
}
|