@sisu-ai/server 7.0.4 → 9.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 CHANGED
@@ -140,9 +140,9 @@ Discover what you can do through examples or documentation. Check it out at http
140
140
  - [@sisu-ai/tool-azure-blob](packages/tools/azure-blob/README.md)
141
141
  - [@sisu-ai/tool-extract-urls](packages/tools/extract-urls/README.md)
142
142
  - [@sisu-ai/tool-github-projects](packages/tools/github-projects/README.md)
143
+ - [@sisu-ai/tool-rag](packages/tools/rag/README.md)
143
144
  - [@sisu-ai/tool-summarize-text](packages/tools/summarize-text/README.md)
144
145
  - [@sisu-ai/tool-terminal](packages/tools/terminal/README.md)
145
- - [@sisu-ai/tool-vec-chroma](packages/tools/vec-chroma/README.md)
146
146
  - [@sisu-ai/tool-web-fetch](packages/tools/web-fetch/README.md)
147
147
  - [@sisu-ai/tool-web-search-duckduckgo](packages/tools/web-search-duckduckgo/README.md)
148
148
  - [@sisu-ai/tool-web-search-google](packages/tools/web-search-google/README.md)
@@ -150,6 +150,19 @@ Discover what you can do through examples or documentation. Check it out at http
150
150
  - [@sisu-ai/tool-wikipedia](packages/tools/wikipedia/README.md)
151
151
  </details>
152
152
 
153
+ <details>
154
+ <summary>All RAG packages</summary>
155
+
156
+ - [@sisu-ai/rag-core](packages/rag/core/README.md)
157
+ </details>
158
+
159
+ <details>
160
+ <summary>All vector packages</summary>
161
+
162
+ - [@sisu-ai/vector-core](packages/vector/core/README.md)
163
+ - [@sisu-ai/vector-chroma](packages/vector/chroma/README.md)
164
+ </details>
165
+
153
166
  <details>
154
167
  <summary>All examples</summary>
155
168
 
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import http, { type IncomingMessage, type ServerResponse } from "http";
2
2
  import https from "https";
3
3
  import type { Agent, Logger, Ctx } from "@sisu-ai/core";
4
4
  import type { AddressInfo } from "net";
5
- export { matchRoute } from "./router.js";
5
+ export { matchRoute } from "./router";
6
6
  export interface ListenOptions<Ctx> {
7
7
  tls?: https.ServerOptions;
8
8
  port?: number;
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@ import http from "http";
2
2
  import https from "https";
3
3
  import { createConsoleLogger, createRedactingLogger } from "@sisu-ai/core";
4
4
  import { EventEmitter } from "events";
5
- export { matchRoute } from "./router.js";
5
+ export { matchRoute } from "./router";
6
6
  export class Server {
7
7
  constructor(agent, opts = {}) {
8
8
  this.agent = agent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisu-ai/server",
3
- "version": "7.0.4",
3
+ "version": "9.0.0",
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.3"
15
+ "@sisu-ai/core": "^2.5.0"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",