@wix/ditto-codegen-public 1.0.324 → 1.0.325
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/out.js +4 -1
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -12921,7 +12921,7 @@ var require_config = __commonJS({
|
|
|
12921
12921
|
"dist/opencode-integration/config.js"(exports2) {
|
|
12922
12922
|
"use strict";
|
|
12923
12923
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12924
|
-
exports2.DEFAULT_MODEL = exports2.DEFAULT_TIMEOUT_MS = void 0;
|
|
12924
|
+
exports2.DEFAULT_SMALL_MODEL = exports2.DEFAULT_MODEL = exports2.DEFAULT_TIMEOUT_MS = void 0;
|
|
12925
12925
|
exports2.getAnthropicBaseUrl = getAnthropicBaseUrl;
|
|
12926
12926
|
exports2.setCurrentAccessToken = setCurrentAccessToken;
|
|
12927
12927
|
exports2.getOpenCodeEnv = getOpenCodeEnv;
|
|
@@ -12932,6 +12932,7 @@ var require_config = __commonJS({
|
|
|
12932
12932
|
var environments_12 = require_environments();
|
|
12933
12933
|
exports2.DEFAULT_TIMEOUT_MS = 20 * 60 * 1e3;
|
|
12934
12934
|
exports2.DEFAULT_MODEL = "anthropic/claude-sonnet-4-6";
|
|
12935
|
+
exports2.DEFAULT_SMALL_MODEL = "anthropic/claude-haiku-4-5-20251001";
|
|
12935
12936
|
var AI_PROXY_BASE_URL = process.env.CODEGEN_AI_PROXY_BASE_URL || "http://localhost:3001";
|
|
12936
12937
|
function getAnthropicBaseUrl(projectId) {
|
|
12937
12938
|
if ((0, experiments_1.isUseWixAiGatewayEnabled)()) {
|
|
@@ -12972,6 +12973,7 @@ var require_config = __commonJS({
|
|
|
12972
12973
|
function getOpenCodeConfig(instructionPaths) {
|
|
12973
12974
|
return {
|
|
12974
12975
|
model: exports2.DEFAULT_MODEL,
|
|
12976
|
+
small_model: exports2.DEFAULT_SMALL_MODEL,
|
|
12975
12977
|
provider: getProviderConfig(),
|
|
12976
12978
|
permission: {
|
|
12977
12979
|
[
|
|
@@ -13007,6 +13009,7 @@ var require_config = __commonJS({
|
|
|
13007
13009
|
function getOpenCodeAskConfig(instructionPaths) {
|
|
13008
13010
|
return {
|
|
13009
13011
|
model: exports2.DEFAULT_MODEL,
|
|
13012
|
+
small_model: exports2.DEFAULT_SMALL_MODEL,
|
|
13010
13013
|
provider: getProviderConfig(),
|
|
13011
13014
|
permission: {
|
|
13012
13015
|
[
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.325",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"esbuild": "^0.27.2",
|
|
29
29
|
"vitest": "^4.0.16"
|
|
30
30
|
},
|
|
31
|
-
"falconPackageHash": "
|
|
31
|
+
"falconPackageHash": "e5cf9022c8fca9f0c34286a173e1ccf25d64d96a83950243bd739fa5"
|
|
32
32
|
}
|