mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-22 13:18:09 +00:00
13 lines
477 B
TypeScript
13 lines
477 B
TypeScript
/**
|
|
* Public Arcee API barrel. It exposes model catalogs, provider config builders,
|
|
* and setup helpers without importing the plugin entry.
|
|
*/
|
|
export { buildArceeModelDefinition, ARCEE_BASE_URL, ARCEE_MODEL_CATALOG } from "./models.js";
|
|
export { buildArceeProvider, buildArceeOpenRouterProvider } from "./provider-catalog.js";
|
|
export {
|
|
applyArceeConfig,
|
|
applyArceeOpenRouterConfig,
|
|
ARCEE_DEFAULT_MODEL_REF,
|
|
ARCEE_OPENROUTER_DEFAULT_MODEL_REF,
|
|
} from "./onboard.js";
|