@exulu/backend 1.53.1 → 1.55.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/dist/index.cjs +5812 -4003
- package/dist/index.d.cts +46 -7
- package/dist/index.d.ts +46 -7
- package/dist/index.js +5830 -4023
- package/ee/agentic-retrieval/v3/agent-loop.ts +288 -0
- package/ee/agentic-retrieval/v3/classifier.ts +78 -0
- package/ee/agentic-retrieval/v3/context-sampler.ts +70 -0
- package/ee/agentic-retrieval/v3/dynamic-tools.ts +115 -0
- package/ee/agentic-retrieval/v3/index.ts +375 -0
- package/ee/agentic-retrieval/v3/session-tools-registry.ts +20 -0
- package/ee/agentic-retrieval/v3/strategies.ts +171 -0
- package/ee/agentic-retrieval/v3/tools.ts +550 -0
- package/ee/agentic-retrieval/v3/trajectory.ts +309 -0
- package/ee/agentic-retrieval/v3/types.ts +59 -0
- package/ee/chunking/markdown.ts +4 -2
- package/ee/invoke-skills/create-sandbox.ts +119 -0
- package/ee/python/documents/processing/doc_processor.ts +106 -14
- package/ee/workers.ts +1 -1
- package/package.json +9 -4
- package/ee/agentic-retrieval/index.ts +0 -1109
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.55.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
|
@@ -87,11 +87,13 @@
|
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"@ai-sdk/anthropic": "^3.0.23",
|
|
90
|
+
"@ai-sdk/azure": "^3.0.53",
|
|
90
91
|
"@ai-sdk/cerebras": "^2.0.29",
|
|
91
92
|
"@ai-sdk/google-vertex": "^4.0.28",
|
|
92
93
|
"@ai-sdk/openai": "^3.0.18",
|
|
93
94
|
"@ai-sdk/openai-compatible": "^2.0.37",
|
|
94
|
-
"@anthropic-ai/
|
|
95
|
+
"@anthropic-ai/sandbox-runtime": "^0.0.49",
|
|
96
|
+
"@anthropic-ai/sdk": "^0.88.0",
|
|
95
97
|
"@apollo/server": "^5.4.0",
|
|
96
98
|
"@as-integrations/express5": "^1.0.0",
|
|
97
99
|
"@aws-sdk/client-s3": "^3.338.0",
|
|
@@ -111,6 +113,7 @@
|
|
|
111
113
|
"@opentelemetry/winston-transport": "^0.14.1",
|
|
112
114
|
"@perplexity-ai/perplexity_ai": "^0.25.0",
|
|
113
115
|
"ai": "^6.0.49",
|
|
116
|
+
"bash-tool": "^1.3.16",
|
|
114
117
|
"bcryptjs": "^3.0.2",
|
|
115
118
|
"body-parser": "^2.2.0",
|
|
116
119
|
"bullmq": "^5.48.1",
|
|
@@ -132,12 +135,14 @@
|
|
|
132
135
|
"jose": "^6.0.10",
|
|
133
136
|
"json-schema-to-zod": "^2.6.1",
|
|
134
137
|
"jsonwebtoken": "^9.0.2",
|
|
138
|
+
"just-bash": "^2.14.0",
|
|
135
139
|
"knex": "^3.1.0",
|
|
136
140
|
"link": "^2.1.1",
|
|
137
141
|
"mammoth": "^1.11.0",
|
|
138
142
|
"natural": "^8.1.0",
|
|
143
|
+
"nodemailer": "^8.0.7",
|
|
139
144
|
"officeparser": "^5.2.2",
|
|
140
|
-
"openai": "^
|
|
145
|
+
"openai": "^6.34.0",
|
|
141
146
|
"p-limit": "^7.3.0",
|
|
142
147
|
"papaparse": "^5.5.2",
|
|
143
148
|
"pg": "^8.16.3",
|
|
@@ -150,7 +155,7 @@
|
|
|
150
155
|
"wink-nlp": "^2.4.0",
|
|
151
156
|
"winston": "^3.17.0",
|
|
152
157
|
"word-extractor": "^1.0.4",
|
|
153
|
-
"zod": "^3.
|
|
158
|
+
"zod": "^4.3.6",
|
|
154
159
|
"zod-from-json-schema": "^0.5.2",
|
|
155
160
|
"zod-to-json-schema": "^3.25.1",
|
|
156
161
|
"zodex": "^0.18.2"
|