@exulu/backend 1.57.0 → 1.59.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/catalog-EOKGOHTY.js +10 -0
- package/dist/chunk-U36VJDZ7.js +7210 -0
- package/dist/chunk-YS27XOXI.js +62 -0
- package/dist/convert-exulu-tools-to-ai-sdk-tools-ZEECMX43.js +6 -0
- package/dist/index.cjs +10841 -7188
- package/dist/index.d.cts +64 -18
- package/dist/index.d.ts +64 -18
- package/dist/index.js +3740 -7898
- package/ee/agentic-retrieval/v3/index.ts +1 -1
- package/ee/agentic-retrieval/v4/index.ts +1 -1
- package/ee/entitlements.ts +6 -3
- package/ee/invoke-skills/create-sandbox.ts +783 -32
- package/ee/python/.litellm/config.yaml.example +64 -0
- package/ee/python/documents/processing/doc_processor.ts +4 -5
- package/ee/python/requirements.txt +16 -0
- package/ee/python/setup.sh +13 -0
- package/ee/workers.ts +18 -29
- package/package.json +5 -3
|
@@ -215,7 +215,7 @@ export function createAgenticRetrievalToolV3({
|
|
|
215
215
|
|
|
216
216
|
return new ExuluTool({
|
|
217
217
|
id: "agentic_context_search",
|
|
218
|
-
name: "
|
|
218
|
+
name: "Context Search",
|
|
219
219
|
description: `Intelligent context search with query classification, strategy-based retrieval, and virtual filesystem filtering. Searches: ${contextNames}`,
|
|
220
220
|
category: "contexts",
|
|
221
221
|
needsApproval: false,
|
|
@@ -154,7 +154,7 @@ export function createAgenticRetrievalToolV4({
|
|
|
154
154
|
|
|
155
155
|
return new ExuluTool({
|
|
156
156
|
id: "agentic_context_search",
|
|
157
|
-
name: "
|
|
157
|
+
name: "Context Search",
|
|
158
158
|
description: `Intelligent context search with query classification, strategy-based retrieval, and virtual filesystem filtering. Searches: ${contextNames}`,
|
|
159
159
|
category: "contexts",
|
|
160
160
|
needsApproval: false,
|
package/ee/entitlements.ts
CHANGED
|
@@ -9,6 +9,7 @@ export const ENTITLEMENTS: {
|
|
|
9
9
|
"agent-feedback": boolean,
|
|
10
10
|
"multi-agent-tooling": boolean,
|
|
11
11
|
"advanced-document-processing": boolean,
|
|
12
|
+
"rate-limits": boolean,
|
|
12
13
|
} = {
|
|
13
14
|
"rbac": false,
|
|
14
15
|
"advanced-markdown-chunker": false,
|
|
@@ -19,12 +20,13 @@ export const ENTITLEMENTS: {
|
|
|
19
20
|
"template-conversations": false,
|
|
20
21
|
"agent-feedback": false,
|
|
21
22
|
"multi-agent-tooling": false,
|
|
22
|
-
"advanced-document-processing": false
|
|
23
|
+
"advanced-document-processing": false,
|
|
24
|
+
"rate-limits": false,
|
|
23
25
|
}
|
|
24
26
|
|
|
25
27
|
export const checkLicense = () => {
|
|
26
28
|
if (
|
|
27
|
-
!process.env.EXULU_ENTERPRISE_LICENSE ||
|
|
29
|
+
!process.env.EXULU_ENTERPRISE_LICENSE ||
|
|
28
30
|
process.env.EXULU_ENTERPRISE_LICENSE === "" ||
|
|
29
31
|
!process.env.EXULU_ENTERPRISE_LICENSE.startsWith("EXULU_EE_")
|
|
30
32
|
) {
|
|
@@ -42,7 +44,8 @@ export const checkLicense = () => {
|
|
|
42
44
|
"template-conversations": true,
|
|
43
45
|
"agent-feedback": true,
|
|
44
46
|
"multi-agent-tooling": true,
|
|
45
|
-
"advanced-document-processing": true
|
|
47
|
+
"advanced-document-processing": true,
|
|
48
|
+
"rate-limits": true,
|
|
46
49
|
}
|
|
47
50
|
}
|
|
48
51
|
|