wirejs-deploy-amplify-basic 0.1.142-llm → 0.1.143-llm
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/services/llm.js
CHANGED
|
@@ -43,9 +43,6 @@ export class LLM extends BaseLLM {
|
|
|
43
43
|
const command = new ConverseStreamCommand({
|
|
44
44
|
modelId,
|
|
45
45
|
messages: this.convertToBedrockFormat(messages),
|
|
46
|
-
inferenceConfig: {
|
|
47
|
-
maxTokens: 10000
|
|
48
|
-
}
|
|
49
46
|
});
|
|
50
47
|
return await this.bedrockClient.send(command);
|
|
51
48
|
}
|
|
@@ -53,9 +50,6 @@ export class LLM extends BaseLLM {
|
|
|
53
50
|
const command = new ConverseCommand({
|
|
54
51
|
modelId,
|
|
55
52
|
messages: this.convertToBedrockFormat(messages),
|
|
56
|
-
inferenceConfig: {
|
|
57
|
-
maxTokens: 10000
|
|
58
|
-
}
|
|
59
53
|
});
|
|
60
54
|
return await this.bedrockClient.send(command);
|
|
61
55
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wirejs-deploy-amplify-basic",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.143-llm",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"recursive-copy": "^2.0.14",
|
|
45
45
|
"rimraf": "^6.0.1",
|
|
46
46
|
"wirejs-dom": "^1.0.42",
|
|
47
|
-
"wirejs-resources": "^0.1.
|
|
47
|
+
"wirejs-resources": "^0.1.143-llm"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@aws-amplify/backend": "^1.14.0",
|