@exulu/backend 1.57.0 → 1.58.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.
@@ -215,7 +215,7 @@ export function createAgenticRetrievalToolV3({
215
215
 
216
216
  return new ExuluTool({
217
217
  id: "agentic_context_search",
218
- name: "Agentic Context Search",
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: "Agentic Context Search",
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,
@@ -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