@sema-agent/server 1.285.0 → 1.285.1
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/README.md +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,6 +77,16 @@ model gateways, and cloud agent execution behind an HTTP/SSE contract.
|
|
|
77
77
|
|
|
78
78
|
Requirements: Node ≥ 20 (npm path) and an OpenAI-compatible model gateway.
|
|
79
79
|
|
|
80
|
+
> **A note on the `glob@11` deprecation warning at install time.** `npm install` prints a deprecation
|
|
81
|
+
> warning for `glob@11.1.0`, pulled in transitively by `e2b` (the E2B sandbox SDK). It is **install-time
|
|
82
|
+
> noise with no runtime exposure here**: `glob` has exactly one load site inside `e2b` — a `dynamicImport`
|
|
83
|
+
> in its *template-build* file-packing path — and this server only ever touches E2B's *sandbox runtime*
|
|
84
|
+
> API. Verified by execution, not by reading: importing `e2b`, constructing the adapter and driving a real
|
|
85
|
+
> `exec` never puts `glob` in the module cache. We cannot silence it for you — npm `overrides` only apply
|
|
86
|
+
> when the package.json being read *is the project npm was invoked on*, so ours is ignored when this
|
|
87
|
+
> package is installed as a dependency. If the warning bothers you, add `"overrides": { "glob": "^13" }`
|
|
88
|
+
> to **your own** project's package.json (that is the one npm reads); the real fix is upstream in `e2b`.
|
|
89
|
+
|
|
80
90
|
```bash
|
|
81
91
|
# A) npm
|
|
82
92
|
npm install @sema-agent/server
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sema-agent/server",
|
|
3
|
-
"version": "1.285.
|
|
3
|
+
"version": "1.285.1",
|
|
4
4
|
"description": "Sema Server — the server/API implementation layer for Sema, wiring core, registry, model providers, and cloud agent execution. Built on @sema-agent/core.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BUSL-1.1",
|