@trops/dash-core 0.1.319 → 0.1.320
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/index.esm.js +5 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -54185,7 +54185,9 @@ function ChatCore(_ref) {
|
|
|
54185
54185
|
_ref$onPublishEvent = _ref.onPublishEvent,
|
|
54186
54186
|
onPublishEvent = _ref$onPublishEvent === void 0 ? null : _ref$onPublishEvent,
|
|
54187
54187
|
_ref$hideToolsBanner = _ref.hideToolsBanner,
|
|
54188
|
-
hideToolsBanner = _ref$hideToolsBanner === void 0 ? false : _ref$hideToolsBanner
|
|
54188
|
+
hideToolsBanner = _ref$hideToolsBanner === void 0 ? false : _ref$hideToolsBanner,
|
|
54189
|
+
_ref$cwd = _ref.cwd,
|
|
54190
|
+
cwd = _ref$cwd === void 0 ? null : _ref$cwd;
|
|
54189
54191
|
var mainApi = window.mainApi;
|
|
54190
54192
|
|
|
54191
54193
|
// Conversation state
|
|
@@ -54494,7 +54496,8 @@ function ChatCore(_ref) {
|
|
|
54494
54496
|
toolServerMap: toolServerMap,
|
|
54495
54497
|
systemPrompt: systemPrompt,
|
|
54496
54498
|
maxToolRounds: parseInt(maxToolRounds, 10) || 10,
|
|
54497
|
-
widgetUuid: uuid || persistKey
|
|
54499
|
+
widgetUuid: uuid || persistKey,
|
|
54500
|
+
cwd: cwd || undefined
|
|
54498
54501
|
});
|
|
54499
54502
|
}, [mainApi, isLoading, messages, servers, enabledTools, apiKey, model, systemPrompt, maxToolRounds, uuid, persistKey, onPublishEvent, backend, isAnthropicBackend]);
|
|
54500
54503
|
|