brainsmatics 1.1.76 → 1.1.78
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/3d/aichat/index.d.ts +2 -1
- package/dist/component/3d/auxiliary/index.d.ts +5 -1
- package/dist/component/3d/index.d.ts +1 -0
- package/dist/{deflate-ecc69155.js → deflate-60fec9f3.js} +1 -1
- package/dist/{deflate-80fb1848.mjs → deflate-e1a71987.mjs} +1 -1
- package/dist/{index-5b34b9a1.js → index-86f7d521.js} +451 -494
- package/dist/{index-839d4aed.mjs → index-96cc28b0.mjs} +46839 -46603
- package/dist/index.js +1 -1
- package/dist/index.mjs +57 -56
- package/dist/{lerc-dfbbb94b.mjs → lerc-edcec007.mjs} +1 -1
- package/dist/{lerc-6085489a.js → lerc-ee296c33.js} +1 -1
- package/dist/style.css +1 -1
- package/package.json +4 -1
- package/.dockerignore +0 -1
- package/.env.development +0 -1
- package/.env.production +0 -1
- package/.idea/workspace.xml +0 -64
- package/.opencode/skills/react/SKILL.md +0 -49
- package/.opencode/skills/three/SKILL.md +0 -82
- package/.vscode/settings.json +0 -3
- package/AGENTS.md +0 -406
- package/Dockerfile +0 -18
- package/REAMED2.md +0 -157
- package/STAM.d.ts +0 -1
- package/addPublishRules.js +0 -22
- package/bun.lock +0 -3810
- package/docker-compose.yml +0 -11
- package/env.d.ts +0 -7
- package/index.html +0 -13
- package/removePublishRules.js +0 -21
- package/storybook-error.log +0 -0
- package/storybook.log +0 -0
- package/tsconfig.json +0 -38
- package/vite.config.js +0 -68
|
@@ -53,7 +53,8 @@ interface DataTypeButton {
|
|
|
53
53
|
isActive: boolean;
|
|
54
54
|
hasData: boolean;
|
|
55
55
|
}
|
|
56
|
-
type WorkflowType = 'router' | 'linear';
|
|
56
|
+
type WorkflowType = 'router' | 'linear' | SkillWorkflowType;
|
|
57
|
+
type SkillWorkflowType = 'linear.knowledge-explainer' | 'linear.connection-finder' | 'linear.conditional-filter' | 'linear.comparative-analyzer' | 'linear.circuit-explorer' | 'linear.cross-modal-validator' | 'linear.research-planner';
|
|
57
58
|
interface LangGraphSendParams {
|
|
58
59
|
message: string;
|
|
59
60
|
sessionId: string | null;
|
|
@@ -118,7 +118,11 @@ interface AuxiliaryProps {
|
|
|
118
118
|
setTabIndex: React.Dispatch<React.SetStateAction<number>>;
|
|
119
119
|
tabIndex: number;
|
|
120
120
|
aiChatVisible: boolean;
|
|
121
|
-
|
|
121
|
+
loadAssign: (name: string) => void;
|
|
122
|
+
loadFunctionLoopFBX: (name: string) => void;
|
|
123
|
+
functionLoopRef: React.MutableRefObject<any>;
|
|
124
|
+
update3dPosition: {};
|
|
125
|
+
setUpdate3dPosition: React.Dispatch<React.SetStateAction<{}>>;
|
|
122
126
|
}
|
|
123
127
|
declare const Auxiliary: React.FC<AuxiliaryProps>;
|
|
124
128
|
export default Auxiliary;
|
|
@@ -2,6 +2,7 @@ export { default as SideBar } from "./sideBar";
|
|
|
2
2
|
export { default as PipeLine } from "./pipeline";
|
|
3
3
|
export { default as ModalLoader } from "./modalLoader";
|
|
4
4
|
export { default as Auxiliary } from "./auxiliary";
|
|
5
|
+
export { default as AiViewer } from "./aichat";
|
|
5
6
|
export { default as Sections } from "./section";
|
|
6
7
|
export { default as StlLoader } from "./stlLoader";
|
|
7
8
|
export { default as Modal2DLoader } from "./modal2DLoader";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./index-86f7d521.js"),t=require("./basedecoder-0503cc54.js");require("react");require("react-dom");class d extends t.BaseDecoder{decodeBlock(e){return r.inflate_1(new Uint8Array(e)).buffer}}exports.default=d;
|