dominds 1.6.2 → 1.6.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.
- package/dist/apps/runtime.js +6 -0
- package/package.json +1 -1
package/dist/apps/runtime.js
CHANGED
|
@@ -402,6 +402,12 @@ async function registerEnabledAppsToolProxies(params) {
|
|
|
402
402
|
}
|
|
403
403
|
async function listDynamicAppToolsetsForMember(_params) {
|
|
404
404
|
await registerEnabledAppsToolProxies({ rtwsRootAbs: _params.rtwsRootAbs });
|
|
405
|
+
if (!appsRuntimeConfig && !appsHostClient && !appsHostTransition) {
|
|
406
|
+
return [];
|
|
407
|
+
}
|
|
408
|
+
if (!appsHostClient && !appsHostTransition) {
|
|
409
|
+
return [];
|
|
410
|
+
}
|
|
405
411
|
const host = await ensureAppsHostReadyForToolCalls();
|
|
406
412
|
return await host.listDynamicToolsets({
|
|
407
413
|
memberId: _params.memberId,
|