openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
20 lines (19 loc) • 740 B
JavaScript
import { n as buildManifestModelProviderConfig } from "./provider-catalog-shared-DZr41kLr.js";
import { t as modelCatalog } from "./openclaw.plugin-DCwRmEwB.js";
//#region extensions/together/models.ts
const TOGETHER_MANIFEST_PROVIDER = buildManifestModelProviderConfig({
providerId: "together",
catalog: modelCatalog.providers.together
});
const TOGETHER_BASE_URL = TOGETHER_MANIFEST_PROVIDER.baseUrl;
const TOGETHER_MODEL_CATALOG = TOGETHER_MANIFEST_PROVIDER.models;
function buildTogetherModelDefinition(model) {
return {
...model,
api: "openai-completions",
input: [...model.input],
cost: { ...model.cost }
};
}
//#endregion
export { TOGETHER_MODEL_CATALOG as n, buildTogetherModelDefinition as r, TOGETHER_BASE_URL as t };