@exulu/backend 1.45.1 → 1.46.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.45.1",
4
+ "version": "1.46.0",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {
@@ -49,9 +49,10 @@
49
49
  "typescript": "^5.8.3"
50
50
  },
51
51
  "dependencies": {
52
- "@ai-sdk/anthropic": "^2.0.27",
53
- "@ai-sdk/google-vertex": "^3.0.45",
54
- "@ai-sdk/openai": "^2.0.49",
52
+ "@ai-sdk/anthropic": "^3.0.23",
53
+ "@ai-sdk/cerebras": "^2.0.29",
54
+ "@ai-sdk/google-vertex": "^4.0.28",
55
+ "@ai-sdk/openai": "^3.0.18",
55
56
  "@anthropic-ai/sdk": "^0.56.0",
56
57
  "@as-integrations/express5": "^1.0.0",
57
58
  "@aws-sdk/client-s3": "^3.338.0",
@@ -67,7 +68,8 @@
67
68
  "@opentelemetry/sdk-node": "^0.203.0",
68
69
  "@opentelemetry/semantic-conventions": "^1.36.0",
69
70
  "@opentelemetry/winston-transport": "^0.14.1",
70
- "ai": "^5.0.65",
71
+ "@perplexity-ai/perplexity_ai": "^0.25.0",
72
+ "ai": "^6.0.49",
71
73
  "apollo-server": "^3.13.0",
72
74
  "bcryptjs": "^3.0.2",
73
75
  "body-parser": "^2.2.0",
@@ -82,6 +84,7 @@
82
84
  "dotenv": "^16.5.0",
83
85
  "express": "^5.1.0",
84
86
  "express-http-proxy": "^2.1.2",
87
+ "franc": "^6.2.0",
85
88
  "graphql": "^16.11.0",
86
89
  "graphql-tools": "^9.0.18",
87
90
  "graphql-type-json": "^0.3.2",
@@ -91,6 +94,7 @@
91
94
  "jsonwebtoken": "^9.0.2",
92
95
  "knex": "^3.1.0",
93
96
  "link": "^2.1.1",
97
+ "natural": "^8.1.0",
94
98
  "officeparser": "^5.2.2",
95
99
  "openai": "^5.21.0",
96
100
  "papaparse": "^5.5.2",
@@ -100,8 +104,10 @@
100
104
  "reflect-metadata": "^0.2.2",
101
105
  "tiktoken": "^1.0.21",
102
106
  "uuid": "^11.1.0",
107
+ "wink-nlp": "^2.4.0",
103
108
  "winston": "^3.17.0",
104
109
  "zod": "^3.25.76",
110
+ "zod-to-json-schema": "^3.25.1",
105
111
  "zodex": "^0.18.2"
106
112
  }
107
113
  }
@@ -8,6 +8,7 @@ export interface AgentSession {
8
8
  project: string;
9
9
  title: string;
10
10
  created_by: string;
11
+ session_items: string[];
11
12
  rights_mode: 'private' | 'users' | 'roles' | 'public' /* | 'projects' */
12
13
  RBAC?: {
13
14
  type?: string;
@@ -3,6 +3,8 @@ export interface Agent {
3
3
  modelName?: string;
4
4
  providerName?: string;
5
5
  backend: string;
6
+ memory?: string;
7
+ welcomemessage?: string;
6
8
  type: "agent";
7
9
  name: string;
8
10
  image?: string;
@@ -33,6 +35,7 @@ export interface Agent {
33
35
  config: {
34
36
  name: string;
35
37
  variable: string;
38
+ type: "boolean" | "string" | "number" | "variable";
36
39
  }[];
37
40
  name: string;
38
41
  description: string;