mirror of
https://github.com/Nikhil-Doye/workflow-builder.git
synced 2026-07-22 02:01:56 +02:00
ee87d8ad0d
- Introduced a new architecture for the multi-agent intelligence layer, replacing the monolithic `CopilotService` with a modular tool-based system. - Added core components including `AgentManager`, `WorkflowAgent`, and various tools for intent classification, entity extraction, workflow generation, validation, and suggestions. - Implemented a comprehensive test script and demo component for interactive testing of the new agent system. - Updated TypeScript configuration and integrated the new architecture into the existing workflow store, ensuring backward compatibility with the previous API. - Enhanced documentation to reflect the new architecture and its components, providing a clear overview of the system's capabilities and usage.
23 lines
602 B
JSON
23 lines
602 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2015",
|
|
"lib": ["dom", "dom.iterable", "es6"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules/@types/d3-dispatch", "node_modules"]
|
|
}
|