@ricsam/r5d-api 0.0.18 → 0.0.20
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/dist/cjs/index.cjs +2 -1
- package/dist/cjs/package.json +1 -1
- package/dist/mjs/index.mjs +2 -1
- package/dist/mjs/package.json +1 -1
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -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({
|
package/dist/cjs/package.json
CHANGED
package/dist/mjs/index.mjs
CHANGED
|
@@ -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({
|
package/dist/mjs/package.json
CHANGED
package/dist/types/index.d.ts
CHANGED