@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/.mcp.json +7 -0
- package/CHANGELOG.md +8 -2
- package/dist/index.cjs +2024 -889
- package/dist/index.d.cts +138 -22
- package/dist/index.d.ts +138 -22
- package/dist/index.js +2003 -869
- package/package.json +11 -5
- package/types/models/agent-session.ts +1 -0
- package/types/models/agent.ts +3 -0
package/.mcp.json
CHANGED
|
@@ -6,6 +6,13 @@
|
|
|
6
6
|
"headers": {
|
|
7
7
|
"Authorization": "Bearer ${EXULU_TOKEN}"
|
|
8
8
|
}
|
|
9
|
+
},
|
|
10
|
+
"exulu-mcp-server-mr.-sol": {
|
|
11
|
+
"type": "http",
|
|
12
|
+
"url": "https://backend.ai.open.de/mcp/5fff62d1-e7ef-4c3c-b490-51cb95512360",
|
|
13
|
+
"headers": {
|
|
14
|
+
"Authorization": "Bearer ${EXULU_TOKEN}"
|
|
15
|
+
}
|
|
9
16
|
}
|
|
10
17
|
}
|
|
11
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
# [1.46.0](https://github.com/Qventu/exulu-backend/compare/v1.45.1...v1.46.0) (2026-02-23)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* add type check for tool call ([25cf122](https://github.com/Qventu/exulu-backend/commit/25cf1224f4994366b079b92bd62c317ef37d9cbd))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add agentic retrieval, NLP preprocessing, Cerebras models, and Perplexity search ([d49a780](https://github.com/Qventu/exulu-backend/commit/d49a78063bcd534bc79f64da09871ca5599a48b9))
|
|
12
|
+
* consolidate agentic search tools ([c84c151](https://github.com/Qventu/exulu-backend/commit/c84c151925fbe7b17d5e657914f8b857430a19a8))
|