@ricsam/r5d-api 0.0.18 → 0.0.19

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.
@@ -255,7 +255,8 @@ class R5dctlClient {
255
255
  path: `/api/r5dctl/sessions/${encodeURIComponent(sessionId)}/conversation`,
256
256
  query: {
257
257
  format: input.format,
258
- tools: input.includeTools === void 0 ? void 0 : input.includeTools ? "include" : "exclude"
258
+ tools: input.includeTools === void 0 ? void 0 : input.includeTools ? "include" : "exclude",
259
+ system: input.includeSystem === void 0 ? void 0 : input.includeSystem ? "include" : "exclude"
259
260
  }
260
261
  }),
261
262
  prompt: (sessionId, input) => this.request({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "type": "commonjs"
5
5
  }
@@ -231,7 +231,8 @@ class R5dctlClient {
231
231
  path: `/api/r5dctl/sessions/${encodeURIComponent(sessionId)}/conversation`,
232
232
  query: {
233
233
  format: input.format,
234
- tools: input.includeTools === void 0 ? void 0 : input.includeTools ? "include" : "exclude"
234
+ tools: input.includeTools === void 0 ? void 0 : input.includeTools ? "include" : "exclude",
235
+ system: input.includeSystem === void 0 ? void 0 : input.includeSystem ? "include" : "exclude"
235
236
  }
236
237
  }),
237
238
  prompt: (sessionId, input) => this.request({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "type": "module"
5
5
  }
@@ -57,6 +57,7 @@ export type R5dctlRequiredEnv = {
57
57
  export type R5dctlConversationRenderOptions = {
58
58
  format?: "human" | "raw";
59
59
  includeTools?: boolean;
60
+ includeSystem?: boolean;
60
61
  };
61
62
  export type R5dctlConversationResponse = {
62
63
  session: R5dctlSessionDescription;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.cjs",
6
6
  "module": "./dist/mjs/index.mjs",