@exulu/backend 1.46.1 → 1.47.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.
Files changed (151) hide show
  1. package/.agents/skills/mintlify/SKILL.md +347 -0
  2. package/.editorconfig +15 -0
  3. package/.eslintrc.json +52 -0
  4. package/.jscpd.json +18 -0
  5. package/.prettierignore +5 -0
  6. package/.prettierrc.json +12 -0
  7. package/CHANGELOG.md +15 -2
  8. package/README.md +747 -0
  9. package/SECURITY.md +5 -0
  10. package/dist/index.cjs +12015 -10496
  11. package/dist/index.d.cts +725 -667
  12. package/dist/index.d.ts +725 -667
  13. package/dist/index.js +12034 -10508
  14. package/ee/LICENSE.md +62 -0
  15. package/ee/agentic-retrieval/index.ts +1109 -0
  16. package/ee/documents/THIRD_PARTY_LICENSES/docling.txt +31 -0
  17. package/ee/documents/processing/build_pdf_processor.sh +35 -0
  18. package/ee/documents/processing/chunk_markdown.py +263 -0
  19. package/ee/documents/processing/doc_processor.ts +635 -0
  20. package/ee/documents/processing/pdf_processor.spec +115 -0
  21. package/ee/documents/processing/pdf_to_markdown.py +420 -0
  22. package/ee/documents/processing/requirements.txt +4 -0
  23. package/ee/entitlements.ts +49 -0
  24. package/ee/markdown.ts +686 -0
  25. package/ee/queues/decorator.ts +140 -0
  26. package/ee/queues/queues.ts +156 -0
  27. package/ee/queues/server.ts +6 -0
  28. package/ee/rbac-resolver.ts +51 -0
  29. package/ee/rbac-update.ts +111 -0
  30. package/ee/schemas.ts +347 -0
  31. package/ee/tokenizer.ts +80 -0
  32. package/ee/workers.ts +1423 -0
  33. package/eslint.config.js +88 -0
  34. package/jest.config.ts +25 -0
  35. package/license.md +73 -49
  36. package/mintlify-docs/.mintignore +7 -0
  37. package/mintlify-docs/AGENTS.md +33 -0
  38. package/mintlify-docs/CLAUDE.MD +50 -0
  39. package/mintlify-docs/CONTRIBUTING.md +32 -0
  40. package/mintlify-docs/LICENSE +21 -0
  41. package/mintlify-docs/README.md +55 -0
  42. package/mintlify-docs/ai-tools/claude-code.mdx +43 -0
  43. package/mintlify-docs/ai-tools/cursor.mdx +39 -0
  44. package/mintlify-docs/ai-tools/windsurf.mdx +39 -0
  45. package/mintlify-docs/api-reference/core-types/agent-types.mdx +110 -0
  46. package/mintlify-docs/api-reference/core-types/analytics-types.mdx +95 -0
  47. package/mintlify-docs/api-reference/core-types/configuration-types.mdx +83 -0
  48. package/mintlify-docs/api-reference/core-types/evaluation-types.mdx +106 -0
  49. package/mintlify-docs/api-reference/core-types/job-types.mdx +135 -0
  50. package/mintlify-docs/api-reference/core-types/overview.mdx +73 -0
  51. package/mintlify-docs/api-reference/core-types/prompt-types.mdx +102 -0
  52. package/mintlify-docs/api-reference/core-types/rbac-types.mdx +163 -0
  53. package/mintlify-docs/api-reference/core-types/session-types.mdx +77 -0
  54. package/mintlify-docs/api-reference/core-types/user-management.mdx +112 -0
  55. package/mintlify-docs/api-reference/core-types/workflow-types.mdx +88 -0
  56. package/mintlify-docs/api-reference/core-types.mdx +585 -0
  57. package/mintlify-docs/api-reference/dynamic-types.mdx +851 -0
  58. package/mintlify-docs/api-reference/endpoint/create.mdx +4 -0
  59. package/mintlify-docs/api-reference/endpoint/delete.mdx +4 -0
  60. package/mintlify-docs/api-reference/endpoint/get.mdx +4 -0
  61. package/mintlify-docs/api-reference/endpoint/webhook.mdx +4 -0
  62. package/mintlify-docs/api-reference/introduction.mdx +661 -0
  63. package/mintlify-docs/api-reference/mutations.mdx +1012 -0
  64. package/mintlify-docs/api-reference/openapi.json +217 -0
  65. package/mintlify-docs/api-reference/queries.mdx +1154 -0
  66. package/mintlify-docs/backend/introduction.mdx +218 -0
  67. package/mintlify-docs/changelog.mdx +293 -0
  68. package/mintlify-docs/community-edition.mdx +304 -0
  69. package/mintlify-docs/core/exulu-agent/api-reference.mdx +894 -0
  70. package/mintlify-docs/core/exulu-agent/configuration.mdx +690 -0
  71. package/mintlify-docs/core/exulu-agent/introduction.mdx +552 -0
  72. package/mintlify-docs/core/exulu-app/api-reference.mdx +481 -0
  73. package/mintlify-docs/core/exulu-app/configuration.mdx +319 -0
  74. package/mintlify-docs/core/exulu-app/introduction.mdx +117 -0
  75. package/mintlify-docs/core/exulu-authentication.mdx +810 -0
  76. package/mintlify-docs/core/exulu-chunkers/api-reference.mdx +1011 -0
  77. package/mintlify-docs/core/exulu-chunkers/configuration.mdx +596 -0
  78. package/mintlify-docs/core/exulu-chunkers/introduction.mdx +403 -0
  79. package/mintlify-docs/core/exulu-context/api-reference.mdx +911 -0
  80. package/mintlify-docs/core/exulu-context/configuration.mdx +648 -0
  81. package/mintlify-docs/core/exulu-context/introduction.mdx +394 -0
  82. package/mintlify-docs/core/exulu-database.mdx +811 -0
  83. package/mintlify-docs/core/exulu-default-agents.mdx +545 -0
  84. package/mintlify-docs/core/exulu-eval/api-reference.mdx +772 -0
  85. package/mintlify-docs/core/exulu-eval/configuration.mdx +680 -0
  86. package/mintlify-docs/core/exulu-eval/introduction.mdx +459 -0
  87. package/mintlify-docs/core/exulu-logging.mdx +464 -0
  88. package/mintlify-docs/core/exulu-otel.mdx +670 -0
  89. package/mintlify-docs/core/exulu-queues/api-reference.mdx +648 -0
  90. package/mintlify-docs/core/exulu-queues/configuration.mdx +650 -0
  91. package/mintlify-docs/core/exulu-queues/introduction.mdx +474 -0
  92. package/mintlify-docs/core/exulu-reranker/api-reference.mdx +630 -0
  93. package/mintlify-docs/core/exulu-reranker/configuration.mdx +663 -0
  94. package/mintlify-docs/core/exulu-reranker/introduction.mdx +516 -0
  95. package/mintlify-docs/core/exulu-tool/api-reference.mdx +723 -0
  96. package/mintlify-docs/core/exulu-tool/configuration.mdx +805 -0
  97. package/mintlify-docs/core/exulu-tool/introduction.mdx +539 -0
  98. package/mintlify-docs/core/exulu-variables/api-reference.mdx +699 -0
  99. package/mintlify-docs/core/exulu-variables/configuration.mdx +736 -0
  100. package/mintlify-docs/core/exulu-variables/introduction.mdx +511 -0
  101. package/mintlify-docs/development.mdx +94 -0
  102. package/mintlify-docs/docs.json +248 -0
  103. package/mintlify-docs/enterprise-edition.mdx +538 -0
  104. package/mintlify-docs/essentials/code.mdx +35 -0
  105. package/mintlify-docs/essentials/images.mdx +59 -0
  106. package/mintlify-docs/essentials/markdown.mdx +88 -0
  107. package/mintlify-docs/essentials/navigation.mdx +87 -0
  108. package/mintlify-docs/essentials/reusable-snippets.mdx +110 -0
  109. package/mintlify-docs/essentials/settings.mdx +318 -0
  110. package/mintlify-docs/favicon.svg +3 -0
  111. package/mintlify-docs/frontend/introduction.mdx +39 -0
  112. package/mintlify-docs/getting-started.mdx +267 -0
  113. package/mintlify-docs/guides/custom-agent.mdx +608 -0
  114. package/mintlify-docs/guides/first-agent.mdx +315 -0
  115. package/mintlify-docs/images/admin_ui.png +0 -0
  116. package/mintlify-docs/images/contexts.png +0 -0
  117. package/mintlify-docs/images/create_agents.png +0 -0
  118. package/mintlify-docs/images/evals.png +0 -0
  119. package/mintlify-docs/images/graphql.png +0 -0
  120. package/mintlify-docs/images/graphql_api.png +0 -0
  121. package/mintlify-docs/images/hero-dark.png +0 -0
  122. package/mintlify-docs/images/hero-light.png +0 -0
  123. package/mintlify-docs/images/hero.png +0 -0
  124. package/mintlify-docs/images/knowledge_sources.png +0 -0
  125. package/mintlify-docs/images/mcp.png +0 -0
  126. package/mintlify-docs/images/scaling.png +0 -0
  127. package/mintlify-docs/index.mdx +411 -0
  128. package/mintlify-docs/logo/dark.svg +9 -0
  129. package/mintlify-docs/logo/light.svg +9 -0
  130. package/mintlify-docs/partners.mdx +558 -0
  131. package/mintlify-docs/products.mdx +77 -0
  132. package/mintlify-docs/snippets/snippet-intro.mdx +4 -0
  133. package/mintlify-docs/styles.css +207 -0
  134. package/{documentation → old-documentation}/logging.md +3 -3
  135. package/package.json +35 -4
  136. package/skills-lock.json +10 -0
  137. package/types/context-processor.ts +45 -0
  138. package/types/exulu-table-definition.ts +79 -0
  139. package/types/file-types.ts +18 -0
  140. package/types/models/agent.ts +10 -12
  141. package/types/models/exulu-agent-tool-config.ts +11 -0
  142. package/types/models/rate-limiter-rules.ts +7 -0
  143. package/types/provider-config.ts +21 -0
  144. package/types/queue-config.ts +16 -0
  145. package/types/rbac-rights-modes.ts +1 -0
  146. package/types/statistics.ts +20 -0
  147. package/types/workflow.ts +31 -0
  148. package/changelogs/10.11.2025_03.12.2025.md +0 -316
  149. package/types/models/agent-backend.ts +0 -15
  150. /package/{documentation → old-documentation}/otel.md +0 -0
  151. /package/{documentation → old-documentation}/patch-older-releases.md +0 -0
@@ -0,0 +1,248 @@
1
+ {
2
+ "$schema": "https://mintlify.com/docs.json",
3
+ "theme": "aspen",
4
+ "name": "Exulu IMP",
5
+ "banner": {
6
+ "content": "🚀 1.47.0 is live! [Learn more](/changelog#1-47-0)"
7
+ },
8
+ "colors": {
9
+ "primary": "#8B5CF6",
10
+ "light": "#A78BFA",
11
+ "dark": "#7C3AED"
12
+ },
13
+ "icons": {
14
+ "library": "lucide"
15
+ },
16
+ "favicon": "/favicon.svg",
17
+ "customCss": [
18
+ "/styles.css"
19
+ ],
20
+ "navigation": {
21
+ "tabs": [
22
+ {
23
+ "tab": "Home",
24
+ "icon": "house",
25
+ "pages": [
26
+ "index",
27
+ "community-edition",
28
+ "enterprise-edition",
29
+ "partners"
30
+ ]
31
+ },
32
+ {
33
+ "tab": "Documentation",
34
+ "icon": "book",
35
+ "groups": [
36
+ {
37
+ "group": "Getting started",
38
+ "pages": [
39
+ "backend/introduction",
40
+ {
41
+ "group": "Guides",
42
+ "pages": [
43
+ "getting-started",
44
+ "guides/first-agent",
45
+ "guides/custom-agent"
46
+ ]
47
+ }
48
+ ]
49
+ },
50
+ {
51
+ "group": "Core classes",
52
+ "pages": [
53
+ {
54
+ "group": "ExuluApp",
55
+ "pages": [
56
+ "core/exulu-app/introduction",
57
+ "core/exulu-app/configuration",
58
+ "core/exulu-app/api-reference"
59
+ ]
60
+ },
61
+ {
62
+ "group": "ExuluProvider",
63
+ "pages": [
64
+ "core/exulu-agent/introduction",
65
+ "core/exulu-agent/configuration",
66
+ "core/exulu-agent/api-reference"
67
+ ]
68
+ },
69
+ {
70
+ "group": "ExuluContext",
71
+ "pages": [
72
+ "core/exulu-context/introduction",
73
+ "core/exulu-context/configuration",
74
+ "core/exulu-context/api-reference"
75
+ ]
76
+ },
77
+ {
78
+ "group": "ExuluTool",
79
+ "pages": [
80
+ "core/exulu-tool/introduction",
81
+ "core/exulu-tool/configuration",
82
+ "core/exulu-tool/api-reference"
83
+ ]
84
+ },
85
+ {
86
+ "group": "ExuluReranker",
87
+ "pages": [
88
+ "core/exulu-reranker/introduction",
89
+ "core/exulu-reranker/configuration",
90
+ "core/exulu-reranker/api-reference"
91
+ ]
92
+ },
93
+ {
94
+ "group": "ExuluQueues",
95
+ "pages": [
96
+ "core/exulu-queues/introduction",
97
+ "core/exulu-queues/configuration",
98
+ "core/exulu-queues/api-reference"
99
+ ]
100
+ },
101
+ {
102
+ "group": "ExuluChunkers",
103
+ "pages": [
104
+ "core/exulu-chunkers/introduction",
105
+ "core/exulu-chunkers/configuration",
106
+ "core/exulu-chunkers/api-reference"
107
+ ]
108
+ },
109
+ {
110
+ "group": "ExuluVariables",
111
+ "pages": [
112
+ "core/exulu-variables/introduction",
113
+ "core/exulu-variables/configuration",
114
+ "core/exulu-variables/api-reference"
115
+ ]
116
+ },
117
+ {
118
+ "group": "ExuluEval",
119
+ "pages": [
120
+ "core/exulu-eval/introduction",
121
+ "core/exulu-eval/configuration",
122
+ "core/exulu-eval/api-reference"
123
+ ]
124
+ },
125
+ "core/exulu-default-agents",
126
+ "core/exulu-otel",
127
+ "core/exulu-logging",
128
+ "core/exulu-authentication",
129
+ "core/exulu-database"
130
+ ]
131
+ },
132
+ {
133
+ "group": "Frontend",
134
+ "pages": [
135
+ "frontend/introduction"
136
+ ]
137
+ },
138
+ {
139
+ "group": "GraphQL API",
140
+ "pages": [
141
+ "api-reference/introduction",
142
+ "api-reference/queries",
143
+ "api-reference/mutations"
144
+ ]
145
+ },
146
+ {
147
+ "group": "Core Types",
148
+ "pages": [
149
+ "api-reference/core-types/overview",
150
+ "api-reference/dynamic-types",
151
+ "api-reference/core-types/agent-types",
152
+ "api-reference/core-types/session-types",
153
+ "api-reference/core-types/user-management",
154
+ "api-reference/core-types/evaluation-types",
155
+ "api-reference/core-types/workflow-types",
156
+ "api-reference/core-types/configuration-types",
157
+ "api-reference/core-types/prompt-types",
158
+ "api-reference/core-types/analytics-types",
159
+ "api-reference/core-types/job-types",
160
+ "api-reference/core-types/rbac-types"
161
+ ]
162
+ }
163
+ ]
164
+ },
165
+ {
166
+ "tab": "Changelog",
167
+ "icon": "list-check",
168
+ "pages": [
169
+ "changelog"
170
+ ]
171
+ }
172
+ ],
173
+ "global": {
174
+ "anchors": [
175
+ {
176
+ "anchor": "Exulu Backend",
177
+ "href": "https://github.com/Qventu/exulu-backend",
178
+ "icon": "github"
179
+ },
180
+ {
181
+ "anchor": "Npm Backend",
182
+ "href": "https://www.npmjs.com/package/@exulu/backend",
183
+ "icon": "npm"
184
+ },
185
+ {
186
+ "anchor": "Exulu Frontend",
187
+ "href": "https://github.com/Qventu/exulu-frontend",
188
+ "icon": "github"
189
+ },
190
+ {
191
+ "anchor": "Npm Frontend",
192
+ "href": "https://www.npmjs.com/package/@exulu/frontend",
193
+ "icon": "npm"
194
+ },
195
+ {
196
+ "anchor": "Example Project",
197
+ "href": "https://github.com/Qventu/exulu-example",
198
+ "icon": "github"
199
+ },
200
+ {
201
+ "anchor": "Npm CLI",
202
+ "href": "https://www.npmjs.com/package/@exulu/cli",
203
+ "icon": "npm"
204
+ },
205
+ {
206
+ "anchor": "Exulu CLI",
207
+ "href": "https://github.com/Qventu/exulu-cli",
208
+ "icon": "github"
209
+ },
210
+ {
211
+ "anchor": "Exulu Website",
212
+ "href": "https://exulu.com",
213
+ "icon": "globe"
214
+ }
215
+ ]
216
+ }
217
+ },
218
+ "logo": {
219
+ "light": "/logo/light.svg",
220
+ "dark": "/logo/dark.svg"
221
+ },
222
+ "navbar": {
223
+ "links": [
224
+ {
225
+ "label": "GitHub",
226
+ "href": "https://github.com/Qventu/exulu-backend"
227
+ }
228
+ ]
229
+ },
230
+ "contextual": {
231
+ "display": "toc",
232
+ "options": [
233
+ "copy",
234
+ "view",
235
+ "chatgpt",
236
+ "claude",
237
+ "perplexity",
238
+ "mcp",
239
+ "cursor",
240
+ "vscode"
241
+ ]
242
+ },
243
+ "footer": {
244
+ "socials": {
245
+ "linkedin": "https://www.linkedin.com/company/exulu"
246
+ }
247
+ }
248
+ }