@wix/auto_sdk_ai-gateway_prompts 1.0.39 → 1.0.40
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +25 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +265 -6
- package/build/cjs/index.typings.js +25 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +265 -6
- package/build/cjs/meta.js +25 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +24 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +265 -6
- package/build/es/index.typings.mjs +24 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +265 -6
- package/build/es/meta.mjs +24 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +25 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +267 -8
- package/build/internal/cjs/index.typings.js +25 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +265 -6
- package/build/internal/cjs/meta.js +25 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +24 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +267 -8
- package/build/internal/es/index.typings.mjs +24 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +265 -6
- package/build/internal/es/meta.mjs +24 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -53,6 +53,8 @@ function generateContentByPromptObject(payload) {
|
|
|
53
53
|
{ path: "prompt.googleAnthropicClaudeRequest.topP" },
|
|
54
54
|
{ path: "prompt.invokeAnthropicModelRequest.temperature" },
|
|
55
55
|
{ path: "prompt.invokeAnthropicModelRequest.topP" },
|
|
56
|
+
{ path: "prompt.amazonConverseRequest.inferenceConfig.temperature" },
|
|
57
|
+
{ path: "prompt.amazonConverseRequest.inferenceConfig.topP" },
|
|
56
58
|
{ path: "prompt.stabilityAiTextToImageRequest.textPrompts.weight" },
|
|
57
59
|
{ path: "prompt.stabilityAiStableDiffusionRequest.strength" },
|
|
58
60
|
{
|
|
@@ -200,6 +202,12 @@ function generateContentByPromptObject(payload) {
|
|
|
200
202
|
path: "materializedPrompt.invokeAnthropicModelRequest.temperature"
|
|
201
203
|
},
|
|
202
204
|
{ path: "materializedPrompt.invokeAnthropicModelRequest.topP" },
|
|
205
|
+
{
|
|
206
|
+
path: "materializedPrompt.amazonConverseRequest.inferenceConfig.temperature"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
path: "materializedPrompt.amazonConverseRequest.inferenceConfig.topP"
|
|
210
|
+
},
|
|
203
211
|
{
|
|
204
212
|
path: "materializedPrompt.stabilityAiTextToImageRequest.textPrompts.weight"
|
|
205
213
|
},
|
|
@@ -355,6 +363,8 @@ function generateTextByPromptObjectStreamed(payload) {
|
|
|
355
363
|
{ path: "prompt.googleAnthropicClaudeRequest.topP" },
|
|
356
364
|
{ path: "prompt.invokeAnthropicModelRequest.temperature" },
|
|
357
365
|
{ path: "prompt.invokeAnthropicModelRequest.topP" },
|
|
366
|
+
{ path: "prompt.amazonConverseRequest.inferenceConfig.temperature" },
|
|
367
|
+
{ path: "prompt.amazonConverseRequest.inferenceConfig.topP" },
|
|
358
368
|
{ path: "prompt.stabilityAiTextToImageRequest.textPrompts.weight" },
|
|
359
369
|
{ path: "prompt.stabilityAiStableDiffusionRequest.strength" },
|
|
360
370
|
{
|
|
@@ -493,6 +503,8 @@ function generateContentByPromptObjectAsync(payload) {
|
|
|
493
503
|
{ path: "prompt.googleAnthropicClaudeRequest.topP" },
|
|
494
504
|
{ path: "prompt.invokeAnthropicModelRequest.temperature" },
|
|
495
505
|
{ path: "prompt.invokeAnthropicModelRequest.topP" },
|
|
506
|
+
{ path: "prompt.amazonConverseRequest.inferenceConfig.temperature" },
|
|
507
|
+
{ path: "prompt.amazonConverseRequest.inferenceConfig.topP" },
|
|
496
508
|
{ path: "prompt.stabilityAiTextToImageRequest.textPrompts.weight" },
|
|
497
509
|
{ path: "prompt.stabilityAiStableDiffusionRequest.strength" },
|
|
498
510
|
{
|
|
@@ -640,6 +652,12 @@ function generateContentByPromptObjectAsync(payload) {
|
|
|
640
652
|
path: "materializedPrompt.invokeAnthropicModelRequest.temperature"
|
|
641
653
|
},
|
|
642
654
|
{ path: "materializedPrompt.invokeAnthropicModelRequest.topP" },
|
|
655
|
+
{
|
|
656
|
+
path: "materializedPrompt.amazonConverseRequest.inferenceConfig.temperature"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
path: "materializedPrompt.amazonConverseRequest.inferenceConfig.topP"
|
|
660
|
+
},
|
|
643
661
|
{
|
|
644
662
|
path: "materializedPrompt.stabilityAiTextToImageRequest.textPrompts.weight"
|
|
645
663
|
},
|
|
@@ -1310,6 +1328,11 @@ var LlamaModel = /* @__PURE__ */ ((LlamaModel2) => {
|
|
|
1310
1328
|
LlamaModel2["LLAMA_3_2_3B_INSTRUCT_1_0"] = "LLAMA_3_2_3B_INSTRUCT_1_0";
|
|
1311
1329
|
return LlamaModel2;
|
|
1312
1330
|
})(LlamaModel || {});
|
|
1331
|
+
var ConverseModel = /* @__PURE__ */ ((ConverseModel2) => {
|
|
1332
|
+
ConverseModel2["UNKNOWN_CONVERSE_MODEL"] = "UNKNOWN_CONVERSE_MODEL";
|
|
1333
|
+
ConverseModel2["OPEN_AI_GPT_OSS_120B"] = "OPEN_AI_GPT_OSS_120B";
|
|
1334
|
+
return ConverseModel2;
|
|
1335
|
+
})(ConverseModel || {});
|
|
1313
1336
|
var ImageQuality = /* @__PURE__ */ ((ImageQuality2) => {
|
|
1314
1337
|
ImageQuality2["UNKNOWN_IMAGE_QUALITY"] = "UNKNOWN_IMAGE_QUALITY";
|
|
1315
1338
|
ImageQuality2["STANDARD"] = "STANDARD";
|
|
@@ -1735,6 +1758,7 @@ export {
|
|
|
1735
1758
|
ClaudeModel,
|
|
1736
1759
|
ClipGuidancePreset,
|
|
1737
1760
|
ContentRole,
|
|
1761
|
+
ConverseModel,
|
|
1738
1762
|
CreatePredictionModel,
|
|
1739
1763
|
DynamicRetrievalConfigMode,
|
|
1740
1764
|
EditImageWithPromptRequestModel,
|