@intelliweave/embedded 2.1.74 → 2.1.76
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/component/component.d.ts +1 -1
- package/dist/component/component.js +136 -80
- package/dist/intelliweave-wordpress.zip +0 -0
- package/dist/node/node.d.ts +1 -1
- package/dist/node/node.js +2 -2
- package/dist/react/react.d.ts +1 -1
- package/dist/react/react.js +54 -13
- package/dist/script-tag/script-tag.js +136 -80
- package/dist/webpack/index.d.ts +1 -1
- package/dist/webpack/index.js +53 -12
- package/package.json +2 -1
- package/.github/workflows/test-pr.yml +0 -31
- package/examples/react-test/index.html +0 -14
- package/examples/react-test/package-lock.json +0 -1844
- package/examples/react-test/package.json +0 -25
- package/examples/react-test/src/App.tsx +0 -69
- package/examples/react-test/src/main.tsx +0 -10
- package/examples/react-test/vite.config.ts +0 -8
|
@@ -1088,7 +1088,7 @@ interface SubAgentConfig {
|
|
|
1088
1088
|
/** Extra knowledge base sources for the sub-agent */
|
|
1089
1089
|
knowledge?: KnowledgeFetcher;
|
|
1090
1090
|
/** Optional extra configuration for the subagent instance */
|
|
1091
|
-
config?: Partial<
|
|
1091
|
+
config?: Partial<IntelliWeaveConfig>;
|
|
1092
1092
|
/** Called when the subagent is loaded */
|
|
1093
1093
|
onAgentLoaded?: (agent: IntelliWeave) => Promise<void> | void;
|
|
1094
1094
|
}
|