@sisu-ai/server 1.0.0 → 2.0.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/README.md +16 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Standalone HTTP/HTTPS adapter for Sisu agents. Spin up an HTTP server or attach to an existing one while keeping the small core philosophy.
|
|
4
4
|
|
|
5
|
+
[](https://github.com/finger-gun/sisu/actions/workflows/tests.yml)
|
|
6
|
+
[](https://github.com/finger-gun/sisu/blob/main/LICENSE)
|
|
7
|
+
[](https://www.npmjs.com/package/@sisu-ai/server)
|
|
8
|
+
[](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
|
|
9
|
+
|
|
5
10
|
## Setup
|
|
6
11
|
|
|
7
12
|
```bash
|
|
@@ -87,3 +92,14 @@ server.listen();
|
|
|
87
92
|
- Startup banner: prints listen address, health path, base path, and optional endpoints
|
|
88
93
|
- Request logs: per-request/response lines, redaction support
|
|
89
94
|
- Events API: `listening`, `request`, `response`, `error`, `close`
|
|
95
|
+
|
|
96
|
+
# Community & Support
|
|
97
|
+
|
|
98
|
+
Discover what you can do through examples or documentation. Check it out at https://github.com/finger-gun/sisu. Example projects live under [`examples/`](https://github.com/finger-gun/sisu/tree/main/examples) in the repo.
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
- [Code of Conduct](https://github.com/finger-gun/sisu/blob/main/CODE_OF_CONDUCT.md)
|
|
102
|
+
- [Contributing Guide](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
|
|
103
|
+
- [License](https://github.com/finger-gun/sisu/blob/main/LICENSE)
|
|
104
|
+
- [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md)
|
|
105
|
+
- [Request a Feature](https://github.com/finger-gun/sisu/issues/new?template=feature_request.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sisu-ai/server",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"build": "tsc -b"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"@sisu-ai/core": "1.0
|
|
18
|
+
"@sisu-ai/core": "1.1.0"
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|