@sisu-ai/server 7.0.2 → 7.0.3

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 (2) hide show
  1. package/README.md +81 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ <div align="right">
2
+ <a href="https://github.com/finger-gun/sisu"><img src="https://github.com/finger-gun/sisu/raw/main/sisu-light.svg" alt="ProjectSpecs" width="100" /></a>
3
+ </div>
4
+
5
+ ---
6
+
1
7
  # @sisu-ai/server
2
8
 
3
9
  Standalone HTTP/HTTPS adapter for Sisu agents. Spin up an HTTP server or attach to an existing one while keeping the small core philosophy.
@@ -104,3 +110,78 @@ Discover what you can do through examples or documentation. Check it out at http
104
110
  - [License](https://github.com/finger-gun/sisu/blob/main/LICENSE)
105
111
  - [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md)
106
112
  - [Request a Feature](https://github.com/finger-gun/sisu/issues/new?template=feature_request.md)
113
+
114
+ ---
115
+
116
+ ## Documentation
117
+
118
+ **Core** — [Package docs](packages/core/README.md) · [Error types](packages/core/ERROR_TYPES.md)
119
+
120
+ **Adapters** — [OpenAI](packages/adapters/openai/README.md) · [Anthropic](packages/adapters/anthropic/README.md) · [Ollama](packages/adapters/ollama/README.md)
121
+
122
+ <details>
123
+ <summary>All middleware packages</summary>
124
+
125
+ - [@sisu-ai/mw-agent-run-api](packages/middleware/agent-run-api/README.md)
126
+ - [@sisu-ai/mw-context-compressor](packages/middleware/context-compressor/README.md)
127
+ - [@sisu-ai/mw-control-flow](packages/middleware/control-flow/README.md)
128
+ - [@sisu-ai/mw-conversation-buffer](packages/middleware/conversation-buffer/README.md)
129
+ - [@sisu-ai/mw-cors](packages/middleware/cors/README.md)
130
+ - [@sisu-ai/mw-error-boundary](packages/middleware/error-boundary/README.md)
131
+ - [@sisu-ai/mw-guardrails](packages/middleware/guardrails/README.md)
132
+ - [@sisu-ai/mw-invariants](packages/middleware/invariants/README.md)
133
+ - [@sisu-ai/mw-orchestration](packages/middleware/orchestration/README.md)
134
+ - [@sisu-ai/mw-rag](packages/middleware/rag/README.md)
135
+ - [@sisu-ai/mw-react-parser](packages/middleware/react-parser/README.md)
136
+ - [@sisu-ai/mw-register-tools](packages/middleware/register-tools/README.md)
137
+ - [@sisu-ai/mw-tool-calling](packages/middleware/tool-calling/README.md)
138
+ - [@sisu-ai/mw-trace-viewer](packages/middleware/trace-viewer/README.md)
139
+ - [@sisu-ai/mw-usage-tracker](packages/middleware/usage-tracker/README.md)
140
+ </details>
141
+
142
+ <details>
143
+ <summary>All tool packages</summary>
144
+
145
+ - [@sisu-ai/tool-aws-s3](packages/tools/aws-s3/README.md)
146
+ - [@sisu-ai/tool-azure-blob](packages/tools/azure-blob/README.md)
147
+ - [@sisu-ai/tool-extract-urls](packages/tools/extract-urls/README.md)
148
+ - [@sisu-ai/tool-github-projects](packages/tools/github-projects/README.md)
149
+ - [@sisu-ai/tool-summarize-text](packages/tools/summarize-text/README.md)
150
+ - [@sisu-ai/tool-terminal](packages/tools/terminal/README.md)
151
+ - [@sisu-ai/tool-vec-chroma](packages/tools/vec-chroma/README.md)
152
+ - [@sisu-ai/tool-web-fetch](packages/tools/web-fetch/README.md)
153
+ - [@sisu-ai/tool-web-search-duckduckgo](packages/tools/web-search-duckduckgo/README.md)
154
+ - [@sisu-ai/tool-web-search-google](packages/tools/web-search-google/README.md)
155
+ - [@sisu-ai/tool-web-search-openai](packages/tools/web-search-openai/README.md)
156
+ - [@sisu-ai/tool-wikipedia](packages/tools/wikipedia/README.md)
157
+ </details>
158
+
159
+ <details>
160
+ <summary>All examples</summary>
161
+
162
+ **Anthropic** — [hello](examples/anthropic-hello/README.md) · [control-flow](examples/anthropic-control-flow/README.md) · [stream](examples/anthropic-stream/README.md) · [weather](examples/anthropic-weather/README.md)
163
+
164
+ **Ollama** — [hello](examples/ollama-hello/README.md) · [stream](examples/ollama-stream/README.md) · [vision](examples/ollama-vision/README.md) · [weather](examples/ollama-weather/README.md) · [web-search](examples/ollama-web-search/README.md)
165
+
166
+ **OpenAI** — [hello](examples/openai-hello/README.md) · [weather](examples/openai-weather/README.md) · [stream](examples/openai-stream/README.md) · [vision](examples/openai-vision/README.md) · [reasoning](examples/openai-reasoning/README.md) · [react](examples/openai-react/README.md) · [control-flow](examples/openai-control-flow/README.md) · [branch](examples/openai-branch/README.md) · [parallel](examples/openai-parallel/README.md) · [graph](examples/openai-graph/README.md) · [orchestration](examples/openai-orchestration/README.md) · [orchestration-adaptive](examples/openai-orchestration-adaptive/README.md) · [guardrails](examples/openai-guardrails/README.md) · [error-handling](examples/openai-error-handling/README.md) · [rag-chroma](examples/openai-rag-chroma/README.md) · [web-search](examples/openai-web-search/README.md) · [web-fetch](examples/openai-web-fetch/README.md) · [wikipedia](examples/openai-wikipedia/README.md) · [terminal](examples/openai-terminal/README.md) · [github-projects](examples/openai-github-projects/README.md) · [server](examples/openai-server/README.md) · [aws-s3](examples/openai-aws-s3/README.md) · [azure-blob](examples/openai-azure-blob/README.md)
167
+ </details>
168
+
169
+ ---
170
+
171
+ ## Contributing
172
+
173
+ We build Sisu in the open. Contributions welcome.
174
+
175
+ [Contributing Guide](CONTRIBUTING.md) · [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md) · [Request a Feature](https://github.com/finger-gun/sisu/issues/new?template=feature_request.md) · [Code of Conduct](CODE_OF_CONDUCT.md)
176
+
177
+ ---
178
+
179
+ <div align="center">
180
+
181
+ **[Star on GitHub](https://github.com/finger-gun/sisu)** if Sisu helps you build better agents.
182
+
183
+ *Quiet, determined, relentlessly useful.*
184
+
185
+ [Apache 2.0 License](LICENSE)
186
+
187
+ </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisu-ai/server",
3
- "version": "7.0.2",
3
+ "version": "7.0.3",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -12,7 +12,7 @@
12
12
  "access": "public"
13
13
  },
14
14
  "peerDependencies": {
15
- "@sisu-ai/core": "^2.3.1"
15
+ "@sisu-ai/core": "^2.3.2"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",