mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 11:51:35 +00:00
* feat(plugin-sdk): add manifest model row builder * refactor(providers): share manifest model row building * refactor(providers): source defaults from manifests * refactor(providers): drop unconsumed builder aliases * fix(providers): keep Cohere catalog internal
11 lines
321 B
TypeScript
11 lines
321 B
TypeScript
// Tencent API module exposes the plugin public contract.
|
|
export {
|
|
TOKENHUB_BASE_URL,
|
|
TOKENHUB_MODEL_CATALOG,
|
|
TOKENHUB_PROVIDER_ID,
|
|
TOKENPLAN_BASE_URL,
|
|
TOKENPLAN_MODEL_CATALOG,
|
|
TOKENPLAN_PROVIDER_ID,
|
|
} from "./models.js";
|
|
export { buildTokenHubProvider, buildTokenPlanProvider } from "./provider-catalog.js";
|