@openclaw/cerebras-provider 2026.7.1-beta.6 → 2026.7.2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as buildCerebrasModelDefinition, n as CEREBRAS_MODEL_CATALOG, t as CEREBRAS_BASE_URL } from "./models-
|
|
1
|
+
import { i as buildCerebrasModelDefinition, n as CEREBRAS_MODEL_CATALOG, t as CEREBRAS_BASE_URL } from "./models-8rp2RVZu.js";
|
|
2
2
|
import { CEREBRAS_DEFAULT_MODEL_REF, applyCerebrasConfig } from "./onboard.js";
|
|
3
3
|
import { buildCerebrasProvider } from "./provider-catalog.js";
|
|
4
4
|
export { CEREBRAS_BASE_URL, CEREBRAS_DEFAULT_MODEL_REF, CEREBRAS_MODEL_CATALOG, applyCerebrasConfig, buildCerebrasModelDefinition, buildCerebrasProvider };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { expectDefined } from "openclaw/plugin-sdk/expect-runtime";
|
|
1
2
|
import { buildManifestModelProviderConfig } from "openclaw/plugin-sdk/provider-catalog-shared";
|
|
2
3
|
//#endregion
|
|
3
4
|
//#region extensions/cerebras/models.ts
|
|
@@ -80,13 +81,13 @@ function buildCerebrasCatalogModels() {
|
|
|
80
81
|
}
|
|
81
82
|
/** Builds one normalized Cerebras model definition from a manifest entry. */
|
|
82
83
|
function buildCerebrasModelDefinition(model) {
|
|
83
|
-
return buildManifestModelProviderConfig({
|
|
84
|
+
return expectDefined(buildManifestModelProviderConfig({
|
|
84
85
|
providerId: "cerebras",
|
|
85
86
|
catalog: {
|
|
86
87
|
...CEREBRAS_MANIFEST_CATALOG,
|
|
87
88
|
models: [model]
|
|
88
89
|
}
|
|
89
|
-
}).models
|
|
90
|
+
}).models.at(0), "normalized Cerebras manifest model");
|
|
90
91
|
}
|
|
91
92
|
//#endregion
|
|
92
93
|
export { buildCerebrasModelDefinition as i, CEREBRAS_MODEL_CATALOG as n, buildCerebrasCatalogModels as r, CEREBRAS_BASE_URL as t };
|
package/dist/models.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { i as buildCerebrasModelDefinition, n as CEREBRAS_MODEL_CATALOG, r as buildCerebrasCatalogModels, t as CEREBRAS_BASE_URL } from "./models-
|
|
1
|
+
import { i as buildCerebrasModelDefinition, n as CEREBRAS_MODEL_CATALOG, r as buildCerebrasCatalogModels, t as CEREBRAS_BASE_URL } from "./models-8rp2RVZu.js";
|
|
2
2
|
export { CEREBRAS_BASE_URL, CEREBRAS_MODEL_CATALOG, buildCerebrasCatalogModels, buildCerebrasModelDefinition };
|
package/dist/onboard.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as buildCerebrasModelDefinition, n as CEREBRAS_MODEL_CATALOG, t as CEREBRAS_BASE_URL } from "./models-
|
|
1
|
+
import { i as buildCerebrasModelDefinition, n as CEREBRAS_MODEL_CATALOG, t as CEREBRAS_BASE_URL } from "./models-8rp2RVZu.js";
|
|
2
2
|
import { createModelCatalogPresetAppliers } from "openclaw/plugin-sdk/provider-onboard";
|
|
3
3
|
//#region extensions/cerebras/onboard.ts
|
|
4
4
|
/**
|
package/dist/provider-catalog.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as buildCerebrasCatalogModels, t as CEREBRAS_BASE_URL } from "./models-
|
|
1
|
+
import { r as buildCerebrasCatalogModels, t as CEREBRAS_BASE_URL } from "./models-8rp2RVZu.js";
|
|
2
2
|
//#region extensions/cerebras/provider-catalog.ts
|
|
3
3
|
/** Builds the Cerebras OpenAI-compatible model provider config. */
|
|
4
4
|
function buildCerebrasProvider() {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/cerebras-provider",
|
|
3
|
-
"version": "2026.7.
|
|
3
|
+
"version": "2026.7.2-beta.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/cerebras-provider",
|
|
9
|
-
"version": "2026.7.
|
|
9
|
+
"version": "2026.7.2-beta.1"
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/cerebras-provider",
|
|
3
|
-
"version": "2026.7.
|
|
3
|
+
"version": "2026.7.2-beta.1",
|
|
4
4
|
"description": "OpenClaw Cerebras provider plugin.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"minHostVersion": ">=2026.6.8"
|
|
19
19
|
},
|
|
20
20
|
"compat": {
|
|
21
|
-
"pluginApi": ">=2026.7.
|
|
21
|
+
"pluginApi": ">=2026.7.2-beta.1"
|
|
22
22
|
},
|
|
23
23
|
"build": {
|
|
24
|
-
"openclawVersion": "2026.7.
|
|
24
|
+
"openclawVersion": "2026.7.2-beta.1",
|
|
25
25
|
"bundledDist": false
|
|
26
26
|
},
|
|
27
27
|
"release": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"README.md"
|
|
40
40
|
],
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"openclaw": ">=2026.7.
|
|
42
|
+
"openclaw": ">=2026.7.2-beta.1"
|
|
43
43
|
},
|
|
44
44
|
"peerDependenciesMeta": {
|
|
45
45
|
"openclaw": {
|