@kumologica/sdk 3.6.4-beta1 → 3.6.4-beta3
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/package.json +4 -4
- package/src/app/lib/ai/chatai.js +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kumologica/sdk",
|
|
3
|
-
"version": "3.6.4-
|
|
3
|
+
"version": "3.6.4-beta3",
|
|
4
4
|
"productName": "Kumologica Designer",
|
|
5
5
|
"copyright": "Copyright 2020 Kumologica Pty Ltd, All Rights Reserved.",
|
|
6
6
|
"author": "Kumologica Pty Ltd <contact@kumologica.com>",
|
|
@@ -83,9 +83,9 @@
|
|
|
83
83
|
"@aws-sdk/credential-providers": "^3.556.0",
|
|
84
84
|
"@aws-sdk/lib-dynamodb": "^3.549.0",
|
|
85
85
|
"@electron/remote": "^2.0.8",
|
|
86
|
-
"@kumologica/builder": "3.6.4-
|
|
87
|
-
"@kumologica/devkit": "3.6.4-
|
|
88
|
-
"@kumologica/runtime": "3.6.4-
|
|
86
|
+
"@kumologica/builder": "3.6.4-beta3",
|
|
87
|
+
"@kumologica/devkit": "3.6.4-beta3",
|
|
88
|
+
"@kumologica/runtime": "3.6.4-beta3",
|
|
89
89
|
"ajv": "8.10.0",
|
|
90
90
|
"archive-type": "^4.0.0",
|
|
91
91
|
"basic-auth": "2.0.1",
|
package/src/app/lib/ai/chatai.js
CHANGED
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
/*
|
|
19
19
|
const {
|
|
20
20
|
provider = "anthropic",
|
|
21
|
-
apiKey = "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",
|
|
22
21
|
model = "claude-sonnet-4-20250514",
|
|
23
22
|
conversation = [],
|
|
24
23
|
question,
|
|
@@ -47,7 +46,6 @@ const fetch = require('node-fetch'); // Node 18+ can use global fetch
|
|
|
47
46
|
async function chatAi(options) {
|
|
48
47
|
const {
|
|
49
48
|
provider = "anthropic",
|
|
50
|
-
apiKey = "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",
|
|
51
49
|
model = "claude-sonnet-4-20250514",
|
|
52
50
|
conversation = [],
|
|
53
51
|
question,
|