@exulu/backend 1.13.0 → 1.14.0
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/CHANGELOG.md +2 -2
- package/dist/index.cjs +291 -263
- package/dist/index.d.cts +27 -15
- package/dist/index.d.ts +27 -15
- package/dist/index.js +282 -254
- package/package.json +3 -3
- package/types/enums/field-types.ts +1 -1
- package/types/enums/statistics.ts +10 -10
- package/types/models/agent.ts +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exulu/backend",
|
|
3
3
|
"author": "Qventu Bv.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.14.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"typescript": "^5.8.3"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@ai-sdk/anthropic": "^
|
|
48
|
+
"@ai-sdk/anthropic": "^2.0.4",
|
|
49
49
|
"@anthropic-ai/sdk": "^0.56.0",
|
|
50
50
|
"@as-integrations/express5": "^1.0.0",
|
|
51
51
|
"@aws-sdk/client-s3": "^3.338.0",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@types/express": "^5.0.1",
|
|
59
59
|
"@types/graphql-type-json": "^0.3.5",
|
|
60
60
|
"@types/multer": "^1.4.12",
|
|
61
|
-
"ai": "^
|
|
61
|
+
"ai": "^5.0.15",
|
|
62
62
|
"apollo-server": "^3.13.0",
|
|
63
63
|
"bcryptjs": "^3.0.2",
|
|
64
64
|
"body-parser": "^2.2.0",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ExuluFieldTypes = "text" | "longText" | "shortText" | "number" | "boolean" | "code" | "json"
|
|
1
|
+
export type ExuluFieldTypes = "text" | "longText" | "shortText" | "number" | "boolean" | "code" | "json" | "enum"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export type STATISTICS_TYPE = "
|
|
1
|
+
export type STATISTICS_TYPE = "CONTEXT_RETRIEVE" | "SOURCE_UPDATE" | "EMBEDDER_UPSERT" | "EMBEDDER_GENERATE" | "EMBEDDER_DELETE" | "WORKFLOW_RUN" | "CONTEXT_UPSERT" | "TOOL_CALL" | "AGENT_RUN";
|
|
2
2
|
|
|
3
3
|
export const STATISTICS_TYPE_ENUM = {
|
|
4
|
-
CONTEXT_RETRIEVE: "
|
|
5
|
-
SOURCE_UPDATE: "
|
|
6
|
-
EMBEDDER_UPSERT: "
|
|
7
|
-
EMBEDDER_GENERATE: "
|
|
8
|
-
EMBEDDER_DELETE: "
|
|
9
|
-
WORKFLOW_RUN: "
|
|
10
|
-
CONTEXT_UPSERT: "
|
|
11
|
-
TOOL_CALL: "
|
|
12
|
-
AGENT_RUN: "
|
|
4
|
+
CONTEXT_RETRIEVE: "CONTEXT_RETRIEVE",
|
|
5
|
+
SOURCE_UPDATE: "SOURCE_UPDATE",
|
|
6
|
+
EMBEDDER_UPSERT: "EMBEDDER_UPSERT",
|
|
7
|
+
EMBEDDER_GENERATE: "EMBEDDER_GENERATE",
|
|
8
|
+
EMBEDDER_DELETE: "EMBEDDER_DELETE",
|
|
9
|
+
WORKFLOW_RUN: "WORKFLOW_RUN",
|
|
10
|
+
CONTEXT_UPSERT: "CONTEXT_UPSERT",
|
|
11
|
+
TOOL_CALL: "TOOL_CALL",
|
|
12
|
+
AGENT_RUN: "AGENT_RUN"
|
|
13
13
|
};
|