codehere 0.1.0 → 0.2.0
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.
Potentially problematic release.
This version of codehere might be problematic. Click here for more details.
- package/README.md +51 -25
- package/dist/agents/base.d.ts +107 -0
- package/dist/agents/base.d.ts.map +1 -0
- package/dist/agents/base.js +101 -0
- package/dist/agents/base.js.map +1 -0
- package/dist/agents/orchestrator-model-driven.d.ts +41 -0
- package/dist/agents/orchestrator-model-driven.d.ts.map +1 -0
- package/dist/agents/orchestrator-model-driven.js +141 -0
- package/dist/agents/orchestrator-model-driven.js.map +1 -0
- package/dist/agents/react-orchestrator-agent.d.ts +15 -0
- package/dist/agents/react-orchestrator-agent.d.ts.map +1 -0
- package/dist/agents/react-orchestrator-agent.js +54 -0
- package/dist/agents/react-orchestrator-agent.js.map +1 -0
- package/dist/application/agents/execution-agent.d.ts +68 -0
- package/dist/application/agents/execution-agent.d.ts.map +1 -0
- package/dist/application/agents/execution-agent.js +299 -0
- package/dist/application/agents/execution-agent.js.map +1 -0
- package/dist/application/agents/multi-agent-orchestrator.d.ts +64 -0
- package/dist/application/agents/multi-agent-orchestrator.d.ts.map +1 -0
- package/dist/application/agents/multi-agent-orchestrator.js +209 -0
- package/dist/application/agents/multi-agent-orchestrator.js.map +1 -0
- package/dist/application/agents/planning-agent.d.ts +61 -0
- package/dist/application/agents/planning-agent.d.ts.map +1 -0
- package/dist/application/agents/planning-agent.js +357 -0
- package/dist/application/agents/planning-agent.js.map +1 -0
- package/dist/application/agents/validation-agent.d.ts +64 -0
- package/dist/application/agents/validation-agent.d.ts.map +1 -0
- package/dist/application/agents/validation-agent.js +182 -0
- package/dist/application/agents/validation-agent.js.map +1 -0
- package/dist/application/architectures/plan-and-act.d.ts +94 -0
- package/dist/application/architectures/plan-and-act.d.ts.map +1 -0
- package/dist/application/architectures/plan-and-act.js +242 -0
- package/dist/application/architectures/plan-and-act.js.map +1 -0
- package/dist/application/index.d.ts +12 -0
- package/dist/application/index.d.ts.map +1 -0
- package/dist/application/index.js +12 -0
- package/dist/application/index.js.map +1 -0
- package/dist/application/services/agent-factory.d.ts +9 -0
- package/dist/application/services/agent-factory.d.ts.map +1 -0
- package/dist/application/services/agent-factory.js +28 -0
- package/dist/application/services/agent-factory.js.map +1 -0
- package/dist/application/services/dependency-container.d.ts +140 -0
- package/dist/application/services/dependency-container.d.ts.map +1 -0
- package/dist/application/services/dependency-container.js +402 -0
- package/dist/application/services/dependency-container.js.map +1 -0
- package/dist/application/services/git-context-service.d.ts +30 -0
- package/dist/application/services/git-context-service.d.ts.map +1 -0
- package/dist/application/services/git-context-service.js +83 -0
- package/dist/application/services/git-context-service.js.map +1 -0
- package/dist/application/services/intelligent-router.d.ts +74 -0
- package/dist/application/services/intelligent-router.d.ts.map +1 -0
- package/dist/application/services/intelligent-router.js +711 -0
- package/dist/application/services/intelligent-router.js.map +1 -0
- package/dist/application/services/tool-executor-service.d.ts +14 -0
- package/dist/application/services/tool-executor-service.d.ts.map +1 -0
- package/dist/application/services/tool-executor-service.js +94 -0
- package/dist/application/services/tool-executor-service.js.map +1 -0
- package/dist/application/use-cases/ask-question-use-case.d.ts +36 -0
- package/dist/application/use-cases/ask-question-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/ask-question-use-case.js +150 -0
- package/dist/application/use-cases/ask-question-use-case.js.map +1 -0
- package/dist/application/use-cases/edit-file-use-case.d.ts +76 -0
- package/dist/application/use-cases/edit-file-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/edit-file-use-case.js +685 -0
- package/dist/application/use-cases/edit-file-use-case.js.map +1 -0
- package/dist/application/use-cases/explain-file-use-case.d.ts +21 -0
- package/dist/application/use-cases/explain-file-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/explain-file-use-case.js +50 -0
- package/dist/application/use-cases/explain-file-use-case.js.map +1 -0
- package/dist/application/use-cases/index-codebase-use-case.d.ts +46 -0
- package/dist/application/use-cases/index-codebase-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/index-codebase-use-case.js +113 -0
- package/dist/application/use-cases/index-codebase-use-case.js.map +1 -0
- package/dist/application/use-cases/planning-use-case.d.ts +46 -0
- package/dist/application/use-cases/planning-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/planning-use-case.js +267 -0
- package/dist/application/use-cases/planning-use-case.js.map +1 -0
- package/dist/application/use-cases/react-orchestration-use-case.d.ts +51 -0
- package/dist/application/use-cases/react-orchestration-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/react-orchestration-use-case.js +325 -0
- package/dist/application/use-cases/react-orchestration-use-case.js.map +1 -0
- package/dist/application/use-cases/reflexion-use-case.d.ts +24 -0
- package/dist/application/use-cases/reflexion-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/reflexion-use-case.js +30 -0
- package/dist/application/use-cases/reflexion-use-case.js.map +1 -0
- package/dist/application/workflows/deterministic-workflows.d.ts +61 -0
- package/dist/application/workflows/deterministic-workflows.d.ts.map +1 -0
- package/dist/application/workflows/deterministic-workflows.js +189 -0
- package/dist/application/workflows/deterministic-workflows.js.map +1 -0
- package/dist/cache.d.ts.map +1 -1
- package/dist/cache.js +1 -3
- package/dist/cache.js.map +1 -1
- package/dist/chat.js +10 -10
- package/dist/chat.js.map +1 -1
- package/dist/docs.d.ts.map +1 -1
- package/dist/docs.js +1 -2
- package/dist/docs.js.map +1 -1
- package/dist/domain/entities/code-chunk.d.ts +26 -0
- package/dist/domain/entities/code-chunk.d.ts.map +1 -0
- package/dist/domain/entities/code-chunk.js +6 -0
- package/dist/domain/entities/code-chunk.js.map +1 -0
- package/dist/domain/entities/decision.d.ts +37 -0
- package/dist/domain/entities/decision.d.ts.map +1 -0
- package/dist/domain/entities/decision.js +9 -0
- package/dist/domain/entities/decision.js.map +1 -0
- package/dist/domain/entities/edit.d.ts +35 -0
- package/dist/domain/entities/edit.d.ts.map +1 -0
- package/dist/domain/entities/edit.js +6 -0
- package/dist/domain/entities/edit.js.map +1 -0
- package/dist/domain/entities/knowledge-node.d.ts +83 -0
- package/dist/domain/entities/knowledge-node.d.ts.map +1 -0
- package/dist/domain/entities/knowledge-node.js +9 -0
- package/dist/domain/entities/knowledge-node.js.map +1 -0
- package/dist/domain/entities/knowledge-preservation.d.ts +42 -0
- package/dist/domain/entities/knowledge-preservation.d.ts.map +1 -0
- package/dist/domain/entities/knowledge-preservation.js +10 -0
- package/dist/domain/entities/knowledge-preservation.js.map +1 -0
- package/dist/domain/entities/memory.d.ts +36 -0
- package/dist/domain/entities/memory.d.ts.map +1 -0
- package/dist/domain/entities/memory.js +6 -0
- package/dist/domain/entities/memory.js.map +1 -0
- package/dist/domain/entities/pattern.d.ts +49 -0
- package/dist/domain/entities/pattern.d.ts.map +1 -0
- package/dist/domain/entities/pattern.js +7 -0
- package/dist/domain/entities/pattern.js.map +1 -0
- package/dist/domain/entities/plan.d.ts +42 -0
- package/dist/domain/entities/plan.d.ts.map +1 -0
- package/dist/domain/entities/plan.js +6 -0
- package/dist/domain/entities/plan.js.map +1 -0
- package/dist/domain/entities/query.d.ts +17 -0
- package/dist/domain/entities/query.d.ts.map +1 -0
- package/dist/domain/entities/query.js +6 -0
- package/dist/domain/entities/query.js.map +1 -0
- package/dist/domain/index.d.ts +16 -0
- package/dist/domain/index.d.ts.map +1 -0
- package/dist/domain/index.js +19 -0
- package/dist/domain/index.js.map +1 -0
- package/dist/domain/interfaces/ai-service.interface.d.ts +62 -0
- package/dist/domain/interfaces/ai-service.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/ai-service.interface.js +6 -0
- package/dist/domain/interfaces/ai-service.interface.js.map +1 -0
- package/dist/domain/interfaces/code-analyzer.interface.d.ts +38 -0
- package/dist/domain/interfaces/code-analyzer.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/code-analyzer.interface.js +6 -0
- package/dist/domain/interfaces/code-analyzer.interface.js.map +1 -0
- package/dist/domain/interfaces/decision-repository.interface.d.ts +51 -0
- package/dist/domain/interfaces/decision-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/decision-repository.interface.js +9 -0
- package/dist/domain/interfaces/decision-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/embedding-repository.interface.d.ts +28 -0
- package/dist/domain/interfaces/embedding-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/embedding-repository.interface.js +6 -0
- package/dist/domain/interfaces/embedding-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/knowledge-graph-repository.interface.d.ts +91 -0
- package/dist/domain/interfaces/knowledge-graph-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/knowledge-graph-repository.interface.js +9 -0
- package/dist/domain/interfaces/knowledge-graph-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/knowledge-preservation-repository.interface.d.ts +50 -0
- package/dist/domain/interfaces/knowledge-preservation-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/knowledge-preservation-repository.interface.js +8 -0
- package/dist/domain/interfaces/knowledge-preservation-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/memory-repository.interface.d.ts +49 -0
- package/dist/domain/interfaces/memory-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/memory-repository.interface.js +6 -0
- package/dist/domain/interfaces/memory-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/pattern-repository.interface.d.ts +48 -0
- package/dist/domain/interfaces/pattern-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/pattern-repository.interface.js +6 -0
- package/dist/domain/interfaces/pattern-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/verification-service.interface.d.ts +20 -0
- package/dist/domain/interfaces/verification-service.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/verification-service.interface.js +6 -0
- package/dist/domain/interfaces/verification-service.interface.js.map +1 -0
- package/dist/domain/services/codebase-detector.d.ts +18 -0
- package/dist/domain/services/codebase-detector.d.ts.map +1 -0
- package/dist/domain/services/codebase-detector.js +91 -0
- package/dist/domain/services/codebase-detector.js.map +1 -0
- package/dist/domain/services/cross-team-pattern-sharing.d.ts +65 -0
- package/dist/domain/services/cross-team-pattern-sharing.d.ts.map +1 -0
- package/dist/domain/services/cross-team-pattern-sharing.js +125 -0
- package/dist/domain/services/cross-team-pattern-sharing.js.map +1 -0
- package/dist/domain/services/decision-recorder.d.ts +76 -0
- package/dist/domain/services/decision-recorder.d.ts.map +1 -0
- package/dist/domain/services/decision-recorder.js +223 -0
- package/dist/domain/services/decision-recorder.js.map +1 -0
- package/dist/domain/services/decision-retriever.d.ts +75 -0
- package/dist/domain/services/decision-retriever.d.ts.map +1 -0
- package/dist/domain/services/decision-retriever.js +133 -0
- package/dist/domain/services/decision-retriever.js.map +1 -0
- package/dist/domain/services/graded-memory-activation.d.ts +37 -0
- package/dist/domain/services/graded-memory-activation.d.ts.map +1 -0
- package/dist/domain/services/graded-memory-activation.js +69 -0
- package/dist/domain/services/graded-memory-activation.js.map +1 -0
- package/dist/domain/services/knowledge-access.d.ts +63 -0
- package/dist/domain/services/knowledge-access.d.ts.map +1 -0
- package/dist/domain/services/knowledge-access.js +132 -0
- package/dist/domain/services/knowledge-access.js.map +1 -0
- package/dist/domain/services/knowledge-extractor.d.ts +54 -0
- package/dist/domain/services/knowledge-extractor.d.ts.map +1 -0
- package/dist/domain/services/knowledge-extractor.js +247 -0
- package/dist/domain/services/knowledge-extractor.js.map +1 -0
- package/dist/domain/services/knowledge-graph-builder.d.ts +70 -0
- package/dist/domain/services/knowledge-graph-builder.d.ts.map +1 -0
- package/dist/domain/services/knowledge-graph-builder.js +268 -0
- package/dist/domain/services/knowledge-graph-builder.js.map +1 -0
- package/dist/domain/services/knowledge-graph-query.d.ts +69 -0
- package/dist/domain/services/knowledge-graph-query.d.ts.map +1 -0
- package/dist/domain/services/knowledge-graph-query.js +187 -0
- package/dist/domain/services/knowledge-graph-query.js.map +1 -0
- package/dist/domain/services/memory-retriever.d.ts +30 -0
- package/dist/domain/services/memory-retriever.d.ts.map +1 -0
- package/dist/domain/services/memory-retriever.js +82 -0
- package/dist/domain/services/memory-retriever.js.map +1 -0
- package/dist/domain/services/memory-synthesizer.d.ts +57 -0
- package/dist/domain/services/memory-synthesizer.d.ts.map +1 -0
- package/dist/domain/services/memory-synthesizer.js +91 -0
- package/dist/domain/services/memory-synthesizer.js.map +1 -0
- package/dist/domain/services/pattern-extractor.d.ts +108 -0
- package/dist/domain/services/pattern-extractor.d.ts.map +1 -0
- package/dist/domain/services/pattern-extractor.js +442 -0
- package/dist/domain/services/pattern-extractor.js.map +1 -0
- package/dist/domain/services/query-intent-classifier.d.ts +16 -0
- package/dist/domain/services/query-intent-classifier.d.ts.map +1 -0
- package/dist/domain/services/query-intent-classifier.js +140 -0
- package/dist/domain/services/query-intent-classifier.js.map +1 -0
- package/dist/domain/services/react-loop.d.ts +44 -0
- package/dist/domain/services/react-loop.d.ts.map +1 -0
- package/dist/domain/services/react-loop.js +110 -0
- package/dist/domain/services/react-loop.js.map +1 -0
- package/dist/edit.d.ts +0 -12
- package/dist/edit.d.ts.map +1 -1
- package/dist/edit.js +76 -351
- package/dist/edit.js.map +1 -1
- package/dist/embed.d.ts +0 -4
- package/dist/embed.d.ts.map +1 -1
- package/dist/embed.js +100 -174
- package/dist/embed.js.map +1 -1
- package/dist/error-handler.d.ts +1 -0
- package/dist/error-handler.d.ts.map +1 -1
- package/dist/error-handler.js +46 -3
- package/dist/error-handler.js.map +1 -1
- package/dist/index.js +228 -231
- package/dist/index.js.map +1 -1
- package/dist/infrastructure/ai/cohere-ai-service.d.ts +54 -0
- package/dist/infrastructure/ai/cohere-ai-service.d.ts.map +1 -0
- package/dist/infrastructure/ai/cohere-ai-service.js +547 -0
- package/dist/infrastructure/ai/cohere-ai-service.js.map +1 -0
- package/dist/infrastructure/ai/command-r-evaluation.d.ts +42 -0
- package/dist/infrastructure/ai/command-r-evaluation.d.ts.map +1 -0
- package/dist/infrastructure/ai/command-r-evaluation.js +206 -0
- package/dist/infrastructure/ai/command-r-evaluation.js.map +1 -0
- package/dist/infrastructure/ai/model-config.d.ts +47 -0
- package/dist/infrastructure/ai/model-config.d.ts.map +1 -0
- package/dist/infrastructure/ai/model-config.js +84 -0
- package/dist/infrastructure/ai/model-config.js.map +1 -0
- package/dist/infrastructure/cache/embedding-cache.d.ts +46 -0
- package/dist/infrastructure/cache/embedding-cache.d.ts.map +1 -0
- package/dist/infrastructure/cache/embedding-cache.js +104 -0
- package/dist/infrastructure/cache/embedding-cache.js.map +1 -0
- package/dist/infrastructure/chunking/ast-code-chunker.d.ts +12 -0
- package/dist/infrastructure/chunking/ast-code-chunker.d.ts.map +1 -0
- package/dist/infrastructure/chunking/ast-code-chunker.js +19 -0
- package/dist/infrastructure/chunking/ast-code-chunker.js.map +1 -0
- package/dist/infrastructure/chunking/code-aware-chunker.d.ts +63 -0
- package/dist/infrastructure/chunking/code-aware-chunker.d.ts.map +1 -0
- package/dist/infrastructure/chunking/code-aware-chunker.js +397 -0
- package/dist/infrastructure/chunking/code-aware-chunker.js.map +1 -0
- package/dist/infrastructure/config/config-manager.d.ts +79 -0
- package/dist/infrastructure/config/config-manager.d.ts.map +1 -0
- package/dist/infrastructure/config/config-manager.js +162 -0
- package/dist/infrastructure/config/config-manager.js.map +1 -0
- package/dist/infrastructure/cost/cost-tracker.d.ts +90 -0
- package/dist/infrastructure/cost/cost-tracker.d.ts.map +1 -0
- package/dist/infrastructure/cost/cost-tracker.js +353 -0
- package/dist/infrastructure/cost/cost-tracker.js.map +1 -0
- package/dist/infrastructure/file-scanner/file-scanner.d.ts +31 -0
- package/dist/infrastructure/file-scanner/file-scanner.d.ts.map +1 -0
- package/dist/infrastructure/file-scanner/file-scanner.js +106 -0
- package/dist/infrastructure/file-scanner/file-scanner.js.map +1 -0
- package/dist/infrastructure/governance/nist-ai-rmf.d.ts +107 -0
- package/dist/infrastructure/governance/nist-ai-rmf.d.ts.map +1 -0
- package/dist/infrastructure/governance/nist-ai-rmf.js +294 -0
- package/dist/infrastructure/governance/nist-ai-rmf.js.map +1 -0
- package/dist/infrastructure/governance/policy-as-code.d.ts +90 -0
- package/dist/infrastructure/governance/policy-as-code.d.ts.map +1 -0
- package/dist/infrastructure/governance/policy-as-code.js +244 -0
- package/dist/infrastructure/governance/policy-as-code.js.map +1 -0
- package/dist/infrastructure/governance/prompt-to-code-lineage.d.ts +138 -0
- package/dist/infrastructure/governance/prompt-to-code-lineage.d.ts.map +1 -0
- package/dist/infrastructure/governance/prompt-to-code-lineage.js +241 -0
- package/dist/infrastructure/governance/prompt-to-code-lineage.js.map +1 -0
- package/dist/infrastructure/index.d.ts +7 -0
- package/dist/infrastructure/index.d.ts.map +1 -0
- package/dist/infrastructure/index.js +7 -0
- package/dist/infrastructure/index.js.map +1 -0
- package/dist/infrastructure/observability/execution-tracer.d.ts +105 -0
- package/dist/infrastructure/observability/execution-tracer.d.ts.map +1 -0
- package/dist/infrastructure/observability/execution-tracer.js +190 -0
- package/dist/infrastructure/observability/execution-tracer.js.map +1 -0
- package/dist/infrastructure/observability/prompt-versioner.d.ts +67 -0
- package/dist/infrastructure/observability/prompt-versioner.d.ts.map +1 -0
- package/dist/infrastructure/observability/prompt-versioner.js +145 -0
- package/dist/infrastructure/observability/prompt-versioner.js.map +1 -0
- package/dist/infrastructure/protocols/a2a-metadata.d.ts +278 -0
- package/dist/infrastructure/protocols/a2a-metadata.d.ts.map +1 -0
- package/dist/infrastructure/protocols/a2a-metadata.js +137 -0
- package/dist/infrastructure/protocols/a2a-metadata.js.map +1 -0
- package/dist/infrastructure/protocols/a2a-protocol.d.ts +132 -0
- package/dist/infrastructure/protocols/a2a-protocol.d.ts.map +1 -0
- package/dist/infrastructure/protocols/a2a-protocol.js +314 -0
- package/dist/infrastructure/protocols/a2a-protocol.js.map +1 -0
- package/dist/infrastructure/protocols/mcp-oauth.d.ts +91 -0
- package/dist/infrastructure/protocols/mcp-oauth.d.ts.map +1 -0
- package/dist/infrastructure/protocols/mcp-oauth.js +184 -0
- package/dist/infrastructure/protocols/mcp-oauth.js.map +1 -0
- package/dist/infrastructure/protocols/mcp-server.d.ts +126 -0
- package/dist/infrastructure/protocols/mcp-server.d.ts.map +1 -0
- package/dist/infrastructure/protocols/mcp-server.js +333 -0
- package/dist/infrastructure/protocols/mcp-server.js.map +1 -0
- package/dist/infrastructure/protocols/streaming-handler.d.ts +57 -0
- package/dist/infrastructure/protocols/streaming-handler.d.ts.map +1 -0
- package/dist/infrastructure/protocols/streaming-handler.js +103 -0
- package/dist/infrastructure/protocols/streaming-handler.js.map +1 -0
- package/dist/infrastructure/security/ai-sast-scanner.d.ts +55 -0
- package/dist/infrastructure/security/ai-sast-scanner.d.ts.map +1 -0
- package/dist/infrastructure/security/ai-sast-scanner.js +163 -0
- package/dist/infrastructure/security/ai-sast-scanner.js.map +1 -0
- package/dist/infrastructure/security/docker-sandbox.d.ts +57 -0
- package/dist/infrastructure/security/docker-sandbox.d.ts.map +1 -0
- package/dist/infrastructure/security/docker-sandbox.js +178 -0
- package/dist/infrastructure/security/docker-sandbox.js.map +1 -0
- package/dist/infrastructure/security/enhanced-security-gate.d.ts +51 -0
- package/dist/infrastructure/security/enhanced-security-gate.d.ts.map +1 -0
- package/dist/infrastructure/security/enhanced-security-gate.js +92 -0
- package/dist/infrastructure/security/enhanced-security-gate.js.map +1 -0
- package/dist/infrastructure/security/input-validator.d.ts +33 -0
- package/dist/infrastructure/security/input-validator.d.ts.map +1 -0
- package/dist/infrastructure/security/input-validator.js +152 -0
- package/dist/infrastructure/security/input-validator.js.map +1 -0
- package/dist/infrastructure/security/license-scanner.d.ts +55 -0
- package/dist/infrastructure/security/license-scanner.d.ts.map +1 -0
- package/dist/infrastructure/security/license-scanner.js +167 -0
- package/dist/infrastructure/security/license-scanner.js.map +1 -0
- package/dist/infrastructure/security/provider-bias-detector.d.ts +53 -0
- package/dist/infrastructure/security/provider-bias-detector.d.ts.map +1 -0
- package/dist/infrastructure/security/provider-bias-detector.js +164 -0
- package/dist/infrastructure/security/provider-bias-detector.js.map +1 -0
- package/dist/infrastructure/security/sandbox-executor.d.ts +34 -0
- package/dist/infrastructure/security/sandbox-executor.d.ts.map +1 -0
- package/dist/infrastructure/security/sandbox-executor.js +64 -0
- package/dist/infrastructure/security/sandbox-executor.js.map +1 -0
- package/dist/infrastructure/storage/memory-stream-service.d.ts +47 -0
- package/dist/infrastructure/storage/memory-stream-service.d.ts.map +1 -0
- package/dist/infrastructure/storage/memory-stream-service.js +204 -0
- package/dist/infrastructure/storage/memory-stream-service.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-decision-repository.d.ts +29 -0
- package/dist/infrastructure/storage/sqlite-decision-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-decision-repository.js +232 -0
- package/dist/infrastructure/storage/sqlite-decision-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-embedding-repository.d.ts +24 -0
- package/dist/infrastructure/storage/sqlite-embedding-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-embedding-repository.js +162 -0
- package/dist/infrastructure/storage/sqlite-embedding-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-knowledge-graph-repository.d.ts +41 -0
- package/dist/infrastructure/storage/sqlite-knowledge-graph-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-knowledge-graph-repository.js +417 -0
- package/dist/infrastructure/storage/sqlite-knowledge-graph-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-knowledge-preservation-repository.d.ts +29 -0
- package/dist/infrastructure/storage/sqlite-knowledge-preservation-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-knowledge-preservation-repository.js +230 -0
- package/dist/infrastructure/storage/sqlite-knowledge-preservation-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-memory-repository.d.ts +40 -0
- package/dist/infrastructure/storage/sqlite-memory-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-memory-repository.js +229 -0
- package/dist/infrastructure/storage/sqlite-memory-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-pattern-repository.d.ts +25 -0
- package/dist/infrastructure/storage/sqlite-pattern-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-pattern-repository.js +249 -0
- package/dist/infrastructure/storage/sqlite-pattern-repository.js.map +1 -0
- package/dist/infrastructure/ux/appropriate-friction.d.ts +77 -0
- package/dist/infrastructure/ux/appropriate-friction.d.ts.map +1 -0
- package/dist/infrastructure/ux/appropriate-friction.js +213 -0
- package/dist/infrastructure/ux/appropriate-friction.js.map +1 -0
- package/dist/infrastructure/ux/bi-directional-learning.d.ts +109 -0
- package/dist/infrastructure/ux/bi-directional-learning.d.ts.map +1 -0
- package/dist/infrastructure/ux/bi-directional-learning.js +200 -0
- package/dist/infrastructure/ux/bi-directional-learning.js.map +1 -0
- package/dist/infrastructure/ux/expectation-management.d.ts +65 -0
- package/dist/infrastructure/ux/expectation-management.d.ts.map +1 -0
- package/dist/infrastructure/ux/expectation-management.js +193 -0
- package/dist/infrastructure/ux/expectation-management.js.map +1 -0
- package/dist/infrastructure/ux/hitl-validation.d.ts +104 -0
- package/dist/infrastructure/ux/hitl-validation.d.ts.map +1 -0
- package/dist/infrastructure/ux/hitl-validation.js +211 -0
- package/dist/infrastructure/ux/hitl-validation.js.map +1 -0
- package/dist/infrastructure/ux/progressive-disclosure.d.ts +84 -0
- package/dist/infrastructure/ux/progressive-disclosure.d.ts.map +1 -0
- package/dist/infrastructure/ux/progressive-disclosure.js +235 -0
- package/dist/infrastructure/ux/progressive-disclosure.js.map +1 -0
- package/dist/infrastructure/ux/team-standards.d.ts +94 -0
- package/dist/infrastructure/ux/team-standards.d.ts.map +1 -0
- package/dist/infrastructure/ux/team-standards.js +196 -0
- package/dist/infrastructure/ux/team-standards.js.map +1 -0
- package/dist/infrastructure/verification/verification-service.d.ts +12 -0
- package/dist/infrastructure/verification/verification-service.d.ts.map +1 -0
- package/dist/infrastructure/verification/verification-service.js +47 -0
- package/dist/infrastructure/verification/verification-service.js.map +1 -0
- package/dist/infrastructure/xai/attention-visualizer.d.ts +73 -0
- package/dist/infrastructure/xai/attention-visualizer.d.ts.map +1 -0
- package/dist/infrastructure/xai/attention-visualizer.js +174 -0
- package/dist/infrastructure/xai/attention-visualizer.js.map +1 -0
- package/dist/infrastructure/xai/cot-visualizer.d.ts +105 -0
- package/dist/infrastructure/xai/cot-visualizer.d.ts.map +1 -0
- package/dist/infrastructure/xai/cot-visualizer.js +239 -0
- package/dist/infrastructure/xai/cot-visualizer.js.map +1 -0
- package/dist/infrastructure/xai/decision-tree-log.d.ts +104 -0
- package/dist/infrastructure/xai/decision-tree-log.d.ts.map +1 -0
- package/dist/infrastructure/xai/decision-tree-log.js +216 -0
- package/dist/infrastructure/xai/decision-tree-log.js.map +1 -0
- package/dist/infrastructure/xai/interactive-xai.d.ts +106 -0
- package/dist/infrastructure/xai/interactive-xai.d.ts.map +1 -0
- package/dist/infrastructure/xai/interactive-xai.js +262 -0
- package/dist/infrastructure/xai/interactive-xai.js.map +1 -0
- package/dist/infrastructure/xai/uncertainty-quantifier.d.ts +80 -0
- package/dist/infrastructure/xai/uncertainty-quantifier.d.ts.map +1 -0
- package/dist/infrastructure/xai/uncertainty-quantifier.js +201 -0
- package/dist/infrastructure/xai/uncertainty-quantifier.js.map +1 -0
- package/dist/intelligent-retrieval.d.ts.map +1 -1
- package/dist/intelligent-retrieval.js +8 -1
- package/dist/intelligent-retrieval.js.map +1 -1
- package/dist/intent/classifier.d.ts +6 -0
- package/dist/intent/classifier.d.ts.map +1 -0
- package/dist/intent/classifier.js +2 -0
- package/dist/intent/classifier.js.map +1 -0
- package/dist/intent/context.d.ts +4 -0
- package/dist/intent/context.d.ts.map +1 -0
- package/dist/intent/context.js +2 -0
- package/dist/intent/context.js.map +1 -0
- package/dist/iterative-refinement.d.ts.map +1 -1
- package/dist/iterative-refinement.js +20 -3
- package/dist/iterative-refinement.js.map +1 -1
- package/dist/learning.d.ts.map +1 -1
- package/dist/learning.js +1 -2
- package/dist/learning.js.map +1 -1
- package/dist/monitoring.d.ts.map +1 -1
- package/dist/monitoring.js +1 -2
- package/dist/monitoring.js.map +1 -1
- package/dist/parallel-processor.d.ts +3 -2
- package/dist/parallel-processor.d.ts.map +1 -1
- package/dist/parallel-processor.js +183 -56
- package/dist/parallel-processor.js.map +1 -1
- package/dist/presentation/cli/commands/ask-command.d.ts +8 -0
- package/dist/presentation/cli/commands/ask-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/ask-command.js +133 -0
- package/dist/presentation/cli/commands/ask-command.js.map +1 -0
- package/dist/presentation/cli/commands/config-command.d.ts +9 -0
- package/dist/presentation/cli/commands/config-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/config-command.js +123 -0
- package/dist/presentation/cli/commands/config-command.js.map +1 -0
- package/dist/presentation/cli/commands/cost-command.d.ts +8 -0
- package/dist/presentation/cli/commands/cost-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/cost-command.js +191 -0
- package/dist/presentation/cli/commands/cost-command.js.map +1 -0
- package/dist/presentation/cli/commands/decision-command.d.ts +12 -0
- package/dist/presentation/cli/commands/decision-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/decision-command.js +207 -0
- package/dist/presentation/cli/commands/decision-command.js.map +1 -0
- package/dist/presentation/cli/commands/help-command.d.ts +9 -0
- package/dist/presentation/cli/commands/help-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/help-command.js +281 -0
- package/dist/presentation/cli/commands/help-command.js.map +1 -0
- package/dist/presentation/cli/commands/knowledge-command.d.ts +13 -0
- package/dist/presentation/cli/commands/knowledge-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/knowledge-command.js +129 -0
- package/dist/presentation/cli/commands/knowledge-command.js.map +1 -0
- package/dist/presentation/cli/commands/learning-dashboard-command.d.ts +8 -0
- package/dist/presentation/cli/commands/learning-dashboard-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/learning-dashboard-command.js +183 -0
- package/dist/presentation/cli/commands/learning-dashboard-command.js.map +1 -0
- package/dist/presentation/cli/commands/orchestrate-command.d.ts +8 -0
- package/dist/presentation/cli/commands/orchestrate-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/orchestrate-command.js +112 -0
- package/dist/presentation/cli/commands/orchestrate-command.js.map +1 -0
- package/dist/presentation/cli/commands/plan-command.d.ts +8 -0
- package/dist/presentation/cli/commands/plan-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/plan-command.js +114 -0
- package/dist/presentation/cli/commands/plan-command.js.map +1 -0
- package/dist/presentation/cli/commands/react-command.d.ts +8 -0
- package/dist/presentation/cli/commands/react-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/react-command.js +99 -0
- package/dist/presentation/cli/commands/react-command.js.map +1 -0
- package/dist/presentation/cli/commands/setup-command.d.ts +10 -0
- package/dist/presentation/cli/commands/setup-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/setup-command.js +231 -0
- package/dist/presentation/cli/commands/setup-command.js.map +1 -0
- package/dist/presentation/cli/commands/smart-command.d.ts +6 -0
- package/dist/presentation/cli/commands/smart-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/smart-command.js +212 -0
- package/dist/presentation/cli/commands/smart-command.js.map +1 -0
- package/dist/presentation/cli/commands/trace-command.d.ts +8 -0
- package/dist/presentation/cli/commands/trace-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/trace-command.js +125 -0
- package/dist/presentation/cli/commands/trace-command.js.map +1 -0
- package/dist/presentation/cli/commands/undo-command.d.ts +8 -0
- package/dist/presentation/cli/commands/undo-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/undo-command.js +141 -0
- package/dist/presentation/cli/commands/undo-command.js.map +1 -0
- package/dist/presentation/cli/error-display.d.ts +23 -0
- package/dist/presentation/cli/error-display.d.ts.map +1 -0
- package/dist/presentation/cli/error-display.js +122 -0
- package/dist/presentation/cli/error-display.js.map +1 -0
- package/dist/refactor.d.ts.map +1 -1
- package/dist/refactor.js +2 -4
- package/dist/refactor.js.map +1 -1
- package/dist/search.d.ts.map +1 -1
- package/dist/search.js +2 -63
- package/dist/search.js.map +1 -1
- package/dist/session.d.ts.map +1 -1
- package/dist/session.js +52 -3
- package/dist/session.js.map +1 -1
- package/dist/testgen.d.ts.map +1 -1
- package/dist/testgen.js +1 -2
- package/dist/testgen.js.map +1 -1
- package/dist/tools/bash.d.ts +53 -0
- package/dist/tools/bash.d.ts.map +1 -0
- package/dist/tools/bash.js +213 -0
- package/dist/tools/bash.js.map +1 -0
- package/dist/tools/edit.d.ts +48 -0
- package/dist/tools/edit.d.ts.map +1 -0
- package/dist/tools/edit.js +235 -0
- package/dist/tools/edit.js.map +1 -0
- package/dist/tools/executor.d.ts +29 -0
- package/dist/tools/executor.d.ts.map +1 -0
- package/dist/tools/executor.js +153 -0
- package/dist/tools/executor.js.map +1 -0
- package/dist/tools/git-tool.d.ts +87 -0
- package/dist/tools/git-tool.d.ts.map +1 -0
- package/dist/tools/git-tool.js +292 -0
- package/dist/tools/git-tool.js.map +1 -0
- package/dist/tools/parser.d.ts +33 -0
- package/dist/tools/parser.d.ts.map +1 -0
- package/dist/tools/parser.js +158 -0
- package/dist/tools/parser.js.map +1 -0
- package/dist/tools/registry.d.ts +74 -0
- package/dist/tools/registry.d.ts.map +1 -0
- package/dist/tools/registry.js +302 -0
- package/dist/tools/registry.js.map +1 -0
- package/dist/tools/search.d.ts +41 -0
- package/dist/tools/search.d.ts.map +1 -0
- package/dist/tools/search.js +100 -0
- package/dist/tools/search.js.map +1 -0
- package/dist/ui.d.ts.map +1 -1
- package/dist/ui.js +4 -2
- package/dist/ui.js.map +1 -1
- package/dist/utils/check-api-status.d.ts +12 -0
- package/dist/utils/check-api-status.d.ts.map +1 -0
- package/dist/utils/check-api-status.js +82 -0
- package/dist/utils/check-api-status.js.map +1 -0
- package/dist/utils/diff-parser.d.ts +22 -0
- package/dist/utils/diff-parser.d.ts.map +1 -0
- package/dist/utils/diff-parser.js +160 -0
- package/dist/utils/diff-parser.js.map +1 -0
- package/dist/utils/logger.d.ts +34 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +56 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/version.d.ts +21 -0
- package/dist/utils/version.d.ts.map +1 -0
- package/dist/utils/version.js +52 -0
- package/dist/utils/version.js.map +1 -0
- package/dist/verification/backup.d.ts +30 -0
- package/dist/verification/backup.d.ts.map +1 -0
- package/dist/verification/backup.js +238 -0
- package/dist/verification/backup.js.map +1 -0
- package/dist/verification/compiler.d.ts +20 -0
- package/dist/verification/compiler.d.ts.map +1 -0
- package/dist/verification/compiler.js +228 -0
- package/dist/verification/compiler.js.map +1 -0
- package/dist/verification/index.d.ts +59 -0
- package/dist/verification/index.d.ts.map +1 -0
- package/dist/verification/index.js +273 -0
- package/dist/verification/index.js.map +1 -0
- package/dist/verification/test-runner.d.ts +27 -0
- package/dist/verification/test-runner.d.ts.map +1 -0
- package/dist/verification/test-runner.js +379 -0
- package/dist/verification/test-runner.js.map +1 -0
- package/package.json +39 -14
- package/ARCHITECTURE.md +0 -240
- package/CHANGELOG.md +0 -44
- package/CONTRIBUTING.md +0 -171
- package/dist/benchmark.d.ts +0 -39
- package/dist/benchmark.d.ts.map +0 -1
- package/dist/benchmark.js +0 -195
- package/dist/benchmark.js.map +0 -1
- package/dist/scaffold.d.ts +0 -14
- package/dist/scaffold.d.ts.map +0 -1
- package/dist/scaffold.js +0 -85
- package/dist/scaffold.js.map +0 -1
- package/templates/next-page/app/layout.tsx +0 -19
- package/templates/next-page/app/page.tsx +0 -10
- package/templates/next-page/package.json +0 -22
- package/templates/node-api/index.js +0 -57
- package/templates/node-api/package.json +0 -13
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application Use Case: ReActOrchestrationUseCase
|
|
3
|
+
* Orchestrates ReAct loop with Memory Stream
|
|
4
|
+
*/
|
|
5
|
+
import { type ReActTrajectory } from '../../domain/services/react-loop.js';
|
|
6
|
+
import type { IAIService } from '../../domain/interfaces/ai-service.interface.js';
|
|
7
|
+
import { MemoryStreamService } from '../../infrastructure/storage/memory-stream-service.js';
|
|
8
|
+
import { ToolExecutorService } from '../services/tool-executor-service.js';
|
|
9
|
+
import type { Memory } from '../../domain/entities/memory.js';
|
|
10
|
+
import { DecisionTreeLog } from '../../infrastructure/xai/decision-tree-log.js';
|
|
11
|
+
import { UncertaintyQuantifier, type UncertaintyResult } from '../../infrastructure/xai/uncertainty-quantifier.js';
|
|
12
|
+
import { CoTVisualizer, type CoTTrajectory } from '../../infrastructure/xai/cot-visualizer.js';
|
|
13
|
+
import { AttentionVisualizer, type AttentionMap } from '../../infrastructure/xai/attention-visualizer.js';
|
|
14
|
+
export interface ReActStreamHandler {
|
|
15
|
+
onToken?: (token: string) => void;
|
|
16
|
+
onThought?: (thought: string) => void;
|
|
17
|
+
onAction?: (action: string) => void;
|
|
18
|
+
onObservation?: (observation: string) => void;
|
|
19
|
+
onComplete?: (fullText: string) => void;
|
|
20
|
+
onError?: (error: Error) => void;
|
|
21
|
+
}
|
|
22
|
+
export interface ReActRequest {
|
|
23
|
+
query: string;
|
|
24
|
+
context?: any;
|
|
25
|
+
maxTurns?: number;
|
|
26
|
+
streamHandler?: ReActStreamHandler;
|
|
27
|
+
}
|
|
28
|
+
export interface ReActResponse {
|
|
29
|
+
trajectory: ReActTrajectory;
|
|
30
|
+
answer: string;
|
|
31
|
+
memoriesUsed: Memory[];
|
|
32
|
+
decisionTree?: any;
|
|
33
|
+
uncertainty?: UncertaintyResult;
|
|
34
|
+
cotTrajectory?: CoTTrajectory;
|
|
35
|
+
attentionMap?: AttentionMap;
|
|
36
|
+
}
|
|
37
|
+
export declare class ReActOrchestrationUseCase {
|
|
38
|
+
private aiService;
|
|
39
|
+
private memoryStream;
|
|
40
|
+
private toolExecutor;
|
|
41
|
+
private decisionTreeLog;
|
|
42
|
+
private uncertaintyQuantifier?;
|
|
43
|
+
private cotVisualizer?;
|
|
44
|
+
private attentionVisualizer?;
|
|
45
|
+
constructor(aiService: IAIService, memoryStream: MemoryStreamService, toolExecutor?: ToolExecutorService, decisionTreeLog?: DecisionTreeLog, uncertaintyQuantifier?: UncertaintyQuantifier, cotVisualizer?: CoTVisualizer, attentionVisualizer?: AttentionVisualizer);
|
|
46
|
+
execute(request: ReActRequest): Promise<ReActResponse>;
|
|
47
|
+
private generateThought;
|
|
48
|
+
private generateAction;
|
|
49
|
+
private isFinalAnswer;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=react-orchestration-use-case.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-orchestration-use-case.d.ts","sourceRoot":"","sources":["../../../src/application/use-cases/react-orchestration-use-case.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAa,KAAK,eAAe,EAA+C,MAAM,qCAAqC,CAAC;AACnI,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAClF,OAAO,EAAE,mBAAmB,EAAE,MAAM,uDAAuD,CAAC;AAC5F,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAC3E,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,iCAAiC,CAAC;AAC9D,OAAO,EAAE,eAAe,EAA+C,MAAM,+CAA+C,CAAC;AAC7H,OAAO,EAAE,qBAAqB,EAAE,KAAK,iBAAiB,EAAE,MAAM,oDAAoD,CAAC;AACnH,OAAO,EAAE,aAAa,EAAE,KAAK,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAC/F,OAAO,EAAE,mBAAmB,EAAE,KAAK,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAE1G,MAAM,WAAW,kBAAkB;IACjC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC,aAAa,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;CAClC;AAED,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,kBAAkB,CAAC;CACpC;AAED,MAAM,WAAW,aAAa;IAC5B,UAAU,EAAE,eAAe,CAAC;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,CAAC,EAAE,GAAG,CAAC;IACnB,WAAW,CAAC,EAAE,iBAAiB,CAAC;IAChC,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,YAAY,CAAC,EAAE,YAAY,CAAC;CAC7B;AAED,qBAAa,yBAAyB;IASlC,OAAO,CAAC,SAAS;IARnB,OAAO,CAAC,YAAY,CAAsB;IAC1C,OAAO,CAAC,YAAY,CAAsB;IAC1C,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,qBAAqB,CAAC,CAAwB;IACtD,OAAO,CAAC,aAAa,CAAC,CAAgB;IACtC,OAAO,CAAC,mBAAmB,CAAC,CAAsB;gBAGxC,SAAS,EAAE,UAAU,EAC7B,YAAY,EAAE,mBAAmB,EACjC,YAAY,CAAC,EAAE,mBAAmB,EAClC,eAAe,CAAC,EAAE,eAAe,EACjC,qBAAqB,CAAC,EAAE,qBAAqB,EAC7C,aAAa,CAAC,EAAE,aAAa,EAC7B,mBAAmB,CAAC,EAAE,mBAAmB;IAUrC,OAAO,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,aAAa,CAAC;YAmO9C,eAAe;YA4Bf,cAAc;IAmG5B,OAAO,CAAC,aAAa;CAwBtB"}
|
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application Use Case: ReActOrchestrationUseCase
|
|
3
|
+
* Orchestrates ReAct loop with Memory Stream
|
|
4
|
+
*/
|
|
5
|
+
import { ReActLoop } from '../../domain/services/react-loop.js';
|
|
6
|
+
import { ToolExecutorService } from '../services/tool-executor-service.js';
|
|
7
|
+
import { DecisionTreeLog } from '../../infrastructure/xai/decision-tree-log.js';
|
|
8
|
+
export class ReActOrchestrationUseCase {
|
|
9
|
+
aiService;
|
|
10
|
+
memoryStream;
|
|
11
|
+
toolExecutor;
|
|
12
|
+
decisionTreeLog;
|
|
13
|
+
uncertaintyQuantifier;
|
|
14
|
+
cotVisualizer;
|
|
15
|
+
attentionVisualizer;
|
|
16
|
+
constructor(aiService, memoryStream, toolExecutor, decisionTreeLog, uncertaintyQuantifier, cotVisualizer, attentionVisualizer) {
|
|
17
|
+
this.aiService = aiService;
|
|
18
|
+
this.memoryStream = memoryStream;
|
|
19
|
+
this.toolExecutor = toolExecutor || new ToolExecutorService();
|
|
20
|
+
this.decisionTreeLog = decisionTreeLog || new DecisionTreeLog();
|
|
21
|
+
this.uncertaintyQuantifier = uncertaintyQuantifier;
|
|
22
|
+
this.cotVisualizer = cotVisualizer;
|
|
23
|
+
this.attentionVisualizer = attentionVisualizer;
|
|
24
|
+
}
|
|
25
|
+
async execute(request) {
|
|
26
|
+
const reactLoop = new ReActLoop(request.maxTurns || 20);
|
|
27
|
+
this.decisionTreeLog.clear(); // Start fresh for this execution
|
|
28
|
+
// 0. Create CoT trajectory for visualization (XAI Foundation - Research: CoT visualization)
|
|
29
|
+
let cotTrajectory;
|
|
30
|
+
if (this.cotVisualizer) {
|
|
31
|
+
cotTrajectory = this.cotVisualizer.createTrajectory(request.query);
|
|
32
|
+
}
|
|
33
|
+
// 1. Retrieve relevant memories
|
|
34
|
+
const memories = await this.memoryStream.retrieve(request.query, 10);
|
|
35
|
+
// 2. Get available tools for context
|
|
36
|
+
const { getToolRegistry } = await import('../../tools/registry.js');
|
|
37
|
+
const toolRegistry = getToolRegistry();
|
|
38
|
+
// 3. Log goal interpretation (XAI Foundation - Research: Full auditability required)
|
|
39
|
+
const goalId = `goal-${Date.now()}`;
|
|
40
|
+
const goalInterpretation = {
|
|
41
|
+
parsedIntent: request.query,
|
|
42
|
+
constraints: request.context?.constraints || [],
|
|
43
|
+
dependencies: memories.map(m => m.description).slice(0, 3), // Top dependencies
|
|
44
|
+
confidence: memories.length > 0 ? 0.8 : 0.6, // Higher confidence with memories
|
|
45
|
+
};
|
|
46
|
+
this.decisionTreeLog.logGoalInterpretation(goalId, goalInterpretation);
|
|
47
|
+
// 4. Build context with memories and tools
|
|
48
|
+
const context = {
|
|
49
|
+
...request.context,
|
|
50
|
+
memories,
|
|
51
|
+
query: request.query,
|
|
52
|
+
availableTools: toolRegistry.getToolList(),
|
|
53
|
+
goalId, // Include goal ID for linking tool calls
|
|
54
|
+
};
|
|
55
|
+
// 4. Execute ReAct loop (with streaming support if handler provided)
|
|
56
|
+
const generateThoughtWithStreaming = async (query, context, trajectory) => {
|
|
57
|
+
const thought = await this.generateThought(query, context, trajectory);
|
|
58
|
+
// Add thought to CoT trajectory (XAI Foundation - Research: CoT visualization)
|
|
59
|
+
if (this.cotVisualizer && cotTrajectory) {
|
|
60
|
+
this.cotVisualizer.addThought(cotTrajectory, thought.content, {
|
|
61
|
+
reasoning: thought.reasoning,
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
// Stream thought if handler provided
|
|
65
|
+
if (request.streamHandler?.onThought) {
|
|
66
|
+
request.streamHandler.onThought(thought.content);
|
|
67
|
+
}
|
|
68
|
+
return thought;
|
|
69
|
+
};
|
|
70
|
+
const generateActionWithStreaming = async (thought, context) => {
|
|
71
|
+
const action = await this.generateAction(thought, context);
|
|
72
|
+
// Add action to CoT trajectory (XAI Foundation - Research: CoT visualization)
|
|
73
|
+
if (this.cotVisualizer && cotTrajectory) {
|
|
74
|
+
const actionDesc = action.type === 'tool'
|
|
75
|
+
? `${action.type}: ${action.name}`
|
|
76
|
+
: `${action.type}: ${action.answer || 'final answer'}`;
|
|
77
|
+
this.cotVisualizer.addAction(cotTrajectory, actionDesc, {
|
|
78
|
+
tool: action.type === 'tool' ? action.name : undefined,
|
|
79
|
+
toolParams: action.type === 'tool' ? action.parameters : undefined,
|
|
80
|
+
reasoning: `Action selected based on thought: ${thought.content.substring(0, 100)}`,
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
// Stream action if handler provided
|
|
84
|
+
if (request.streamHandler?.onAction) {
|
|
85
|
+
const actionDesc = `${action.type}: ${action.name}`;
|
|
86
|
+
request.streamHandler.onAction(actionDesc);
|
|
87
|
+
}
|
|
88
|
+
return action;
|
|
89
|
+
};
|
|
90
|
+
const executeActionWithStreaming = async (action) => {
|
|
91
|
+
const startTime = Date.now();
|
|
92
|
+
// Log tool rationale before execution (XAI Foundation - Research: Tool Rationale Logging)
|
|
93
|
+
if (action.type === 'tool') {
|
|
94
|
+
const toolId = `tool-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`;
|
|
95
|
+
const toolRationale = {
|
|
96
|
+
toolName: action.name,
|
|
97
|
+
parameters: action.parameters || {},
|
|
98
|
+
reasoning: `Tool selected based on thought and available context`,
|
|
99
|
+
alternativeTools: context.availableTools?.filter((t) => t !== action.name).slice(0, 3) || [],
|
|
100
|
+
};
|
|
101
|
+
this.decisionTreeLog.logToolExecution(toolId, toolRationale, context.goalId || goalId);
|
|
102
|
+
// Store tool ID for linking observation
|
|
103
|
+
action.toolId = toolId;
|
|
104
|
+
}
|
|
105
|
+
const observation = await this.toolExecutor.executeAction(action);
|
|
106
|
+
const executionTime = Date.now() - startTime;
|
|
107
|
+
// Update tool execution with raw output and execution time (XAI Foundation - Research: Raw Output Capture)
|
|
108
|
+
if (action.type === 'tool' && action.toolId) {
|
|
109
|
+
const toolId = action.toolId;
|
|
110
|
+
// Re-log with execution results (Note: This is a simplified approach - in production, we'd update the node)
|
|
111
|
+
const toolRationaleWithResults = {
|
|
112
|
+
toolName: action.name,
|
|
113
|
+
parameters: action.parameters || {},
|
|
114
|
+
reasoning: `Tool executed successfully`,
|
|
115
|
+
executionTime,
|
|
116
|
+
rawOutput: observation.result, // Unaltered tool result for provenance
|
|
117
|
+
};
|
|
118
|
+
this.decisionTreeLog.logToolExecution(`tool-result-${toolId}`, toolRationaleWithResults, toolId);
|
|
119
|
+
}
|
|
120
|
+
// Add observation to CoT trajectory (XAI Foundation - Research: CoT visualization)
|
|
121
|
+
if (this.cotVisualizer && cotTrajectory) {
|
|
122
|
+
const obsContent = observation.success
|
|
123
|
+
? String(observation.result).substring(0, 500) // Truncate for display
|
|
124
|
+
: `Error: ${observation.error || 'Failed'}`;
|
|
125
|
+
this.cotVisualizer.addObservation(cotTrajectory, obsContent, {
|
|
126
|
+
success: observation.success,
|
|
127
|
+
executionTime,
|
|
128
|
+
});
|
|
129
|
+
}
|
|
130
|
+
// Stream observation result if handler provided
|
|
131
|
+
if (request.streamHandler?.onObservation) {
|
|
132
|
+
const obsDesc = observation.success
|
|
133
|
+
? `✓ ${String(observation.result).substring(0, 100)}`
|
|
134
|
+
: `✗ ${observation.error || 'Failed'}`;
|
|
135
|
+
request.streamHandler.onObservation(obsDesc);
|
|
136
|
+
}
|
|
137
|
+
// Log error if execution failed (XAI Foundation - Research: Error Trace for Fault Attribution)
|
|
138
|
+
if (!observation.success && action.toolId) {
|
|
139
|
+
this.decisionTreeLog.logError(`error-${Date.now()}`, new Error(observation.error || 'Tool execution failed'), { action, observation }, action.toolId);
|
|
140
|
+
// Add error to CoT trajectory
|
|
141
|
+
if (this.cotVisualizer && cotTrajectory) {
|
|
142
|
+
this.cotVisualizer.addError(cotTrajectory, observation.error || 'Tool execution failed', {
|
|
143
|
+
tool: action.name,
|
|
144
|
+
executionTime,
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
return observation;
|
|
149
|
+
};
|
|
150
|
+
const trajectory = await reactLoop.execute(request.query, context, generateThoughtWithStreaming, generateActionWithStreaming, executeActionWithStreaming, this.isFinalAnswer.bind(this));
|
|
151
|
+
// 5. Record observation
|
|
152
|
+
if (trajectory.success) {
|
|
153
|
+
await this.memoryStream.recordObservation(`Successfully completed: ${request.query}`, { trajectory });
|
|
154
|
+
}
|
|
155
|
+
// Get complete execution tree for auditability (XAI Foundation - Research: Full auditability)
|
|
156
|
+
const executionTree = this.decisionTreeLog.getExecutionTree();
|
|
157
|
+
// Quantify uncertainty in final answer (XAI Foundation - Research: Uncertainty Quantification)
|
|
158
|
+
let uncertainty;
|
|
159
|
+
const finalAnswer = trajectory.finalAnswer || 'Max iterations reached';
|
|
160
|
+
if (this.uncertaintyQuantifier && finalAnswer) {
|
|
161
|
+
uncertainty = await this.uncertaintyQuantifier.quantifyUncertainty(request.query, finalAnswer, {
|
|
162
|
+
chunks: memories.map(m => ({ content: m.description, filepath: m.filepath || '' })),
|
|
163
|
+
});
|
|
164
|
+
}
|
|
165
|
+
// Finalize CoT trajectory (XAI Foundation - Research: CoT visualization)
|
|
166
|
+
if (this.cotVisualizer && cotTrajectory) {
|
|
167
|
+
this.cotVisualizer.completeTrajectory(cotTrajectory);
|
|
168
|
+
// Update status based on trajectory success
|
|
169
|
+
if (!trajectory.success) {
|
|
170
|
+
cotTrajectory.status = 'failed';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
// Generate attention map from memories (XAI Foundation - Research: Attention visualization)
|
|
174
|
+
let attentionMap;
|
|
175
|
+
if (this.attentionVisualizer && memories.length > 0) {
|
|
176
|
+
attentionMap = this.attentionVisualizer.generateAttentionMap(request.query, memories.map(m => ({
|
|
177
|
+
filepath: m.filepath || '',
|
|
178
|
+
content: m.description,
|
|
179
|
+
score: m.relevanceScore || 0.5, // Default score if not available
|
|
180
|
+
})));
|
|
181
|
+
}
|
|
182
|
+
return {
|
|
183
|
+
trajectory,
|
|
184
|
+
answer: finalAnswer,
|
|
185
|
+
memoriesUsed: memories,
|
|
186
|
+
decisionTree: executionTree, // Complete audit trail
|
|
187
|
+
uncertainty, // XAI Foundation - Uncertainty quantification for transparency
|
|
188
|
+
cotTrajectory, // XAI Foundation - Chain-of-Thought visualization
|
|
189
|
+
attentionMap, // XAI Foundation - Attention visualization
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
async generateThought(query, context, trajectory) {
|
|
193
|
+
const memoryContext = context.memories?.length > 0
|
|
194
|
+
? `\n\nPrevious experiences:\n${context.memories.map((m) => `- ${m.description}`).join('\n')}`
|
|
195
|
+
: '';
|
|
196
|
+
const trajectoryContext = trajectory.steps.length > 0
|
|
197
|
+
? `\n\nPrevious steps:\n${trajectory.steps.map((s, i) => `${i + 1}. Thought: ${s.thought.content}\n Action: ${s.action.name}\n Result: ${s.observation.success ? 'Success' : 'Failed'}`).join('\n')}`
|
|
198
|
+
: '';
|
|
199
|
+
const prompt = `You are a reasoning agent. Generate a thought about how to solve this query.
|
|
200
|
+
|
|
201
|
+
Query: ${query}${memoryContext}${trajectoryContext}
|
|
202
|
+
|
|
203
|
+
Generate a thought that:
|
|
204
|
+
1. Analyzes the current situation
|
|
205
|
+
2. Considers what needs to be done next
|
|
206
|
+
3. Reasons about the best approach
|
|
207
|
+
|
|
208
|
+
Thought:`;
|
|
209
|
+
const response = await this.aiService.chat(prompt, [], context.memories || []);
|
|
210
|
+
return {
|
|
211
|
+
content: response,
|
|
212
|
+
reasoning: response,
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
async generateAction(thought, context) {
|
|
216
|
+
const availableTools = context.availableTools || 'No tools available';
|
|
217
|
+
const trajectory = context.trajectory || { steps: [] };
|
|
218
|
+
const trajectoryContext = trajectory.steps.length > 0
|
|
219
|
+
? `\n\nPrevious actions:\n${trajectory.steps.map((s, i) => `${i + 1}. ${s.action.type}: ${s.action.name} - ${s.observation.success ? 'Success' : 'Failed: ' + (s.observation.error || 'Unknown')}`).join('\n')}`
|
|
220
|
+
: '';
|
|
221
|
+
const memoryContext = context.memories?.length > 0
|
|
222
|
+
? `\n\nRelevant past experiences:\n${context.memories.slice(0, 3).map((m) => `- ${m.description}`).join('\n')}`
|
|
223
|
+
: '';
|
|
224
|
+
const prompt = `You are a reasoning agent. Based on this thought, decide the next action.
|
|
225
|
+
|
|
226
|
+
Thought: ${thought.content}${memoryContext}${trajectoryContext}
|
|
227
|
+
|
|
228
|
+
Available tools:
|
|
229
|
+
${availableTools}
|
|
230
|
+
|
|
231
|
+
CRITICAL: Respond with ONLY valid JSON in this exact format:
|
|
232
|
+
{
|
|
233
|
+
"type": "tool" | "agent" | "answer",
|
|
234
|
+
"name": "tool_or_agent_name",
|
|
235
|
+
"parameters": {...}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
Examples:
|
|
239
|
+
- Use search tool: {"type": "tool", "name": "search", "parameters": {"query": "authentication"}}
|
|
240
|
+
- View file: {"type": "tool", "name": "edit_view", "parameters": {"filepath": "src/auth.ts"}}
|
|
241
|
+
- Final answer: {"type": "answer", "name": "final", "parameters": {"answer": "The answer is..."}}
|
|
242
|
+
|
|
243
|
+
JSON only, no other text:`;
|
|
244
|
+
const response = await this.aiService.chat(prompt, [], context.memories || []);
|
|
245
|
+
try {
|
|
246
|
+
// Extract JSON - try multiple patterns
|
|
247
|
+
let jsonStr = response.trim();
|
|
248
|
+
// Remove markdown code blocks if present
|
|
249
|
+
jsonStr = jsonStr.replace(/```json\n?/g, '').replace(/```\n?/g, '').trim();
|
|
250
|
+
// Find JSON object
|
|
251
|
+
const jsonMatch = jsonStr.match(/\{[\s\S]*\}/);
|
|
252
|
+
if (jsonMatch) {
|
|
253
|
+
const parsed = JSON.parse(jsonMatch[0]);
|
|
254
|
+
if (parsed.type && parsed.name) {
|
|
255
|
+
return {
|
|
256
|
+
type: parsed.type,
|
|
257
|
+
name: parsed.name,
|
|
258
|
+
parameters: parsed.parameters || {},
|
|
259
|
+
};
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
catch (e) {
|
|
264
|
+
// Fall through to fallback
|
|
265
|
+
}
|
|
266
|
+
// Fallback: analyze thought to determine action
|
|
267
|
+
const thoughtLower = thought.content.toLowerCase();
|
|
268
|
+
if (thoughtLower.includes('search') || thoughtLower.includes('find') || thoughtLower.includes('look')) {
|
|
269
|
+
// Extract query from thought
|
|
270
|
+
const queryMatch = thought.content.match(/(?:search|find|look for|locate)\s+(.+)/i);
|
|
271
|
+
return {
|
|
272
|
+
type: 'tool',
|
|
273
|
+
name: 'search',
|
|
274
|
+
parameters: { query: queryMatch ? queryMatch[1] : thought.content },
|
|
275
|
+
};
|
|
276
|
+
}
|
|
277
|
+
if (thoughtLower.includes('view') || thoughtLower.includes('read') || thoughtLower.includes('file')) {
|
|
278
|
+
// Try to extract filepath
|
|
279
|
+
const fileMatch = thought.content.match(/(?:view|read|file|open)\s+([^\s]+\.(ts|js|tsx|jsx|py|java|cpp))/i);
|
|
280
|
+
if (fileMatch) {
|
|
281
|
+
return {
|
|
282
|
+
type: 'tool',
|
|
283
|
+
name: 'edit_view',
|
|
284
|
+
parameters: { filepath: fileMatch[1] },
|
|
285
|
+
};
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
if (thoughtLower.includes('answer') || thoughtLower.includes('complete') || thoughtLower.includes('done') || thoughtLower.includes('solution')) {
|
|
289
|
+
return {
|
|
290
|
+
type: 'answer',
|
|
291
|
+
name: 'final_answer',
|
|
292
|
+
parameters: { answer: thought.content },
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
// Default: provide answer based on thought
|
|
296
|
+
return {
|
|
297
|
+
type: 'answer',
|
|
298
|
+
name: 'direct_answer',
|
|
299
|
+
parameters: { answer: thought.content },
|
|
300
|
+
};
|
|
301
|
+
}
|
|
302
|
+
isFinalAnswer(observation) {
|
|
303
|
+
// If observation failed, not a final answer
|
|
304
|
+
if (!observation.success)
|
|
305
|
+
return false;
|
|
306
|
+
// Check if result is a meaningful string answer
|
|
307
|
+
if (typeof observation.result === 'string') {
|
|
308
|
+
const lower = observation.result.toLowerCase();
|
|
309
|
+
const result = observation.result.trim();
|
|
310
|
+
// Not a final answer if it's a tool execution message or empty
|
|
311
|
+
if (result.length === 0)
|
|
312
|
+
return false;
|
|
313
|
+
if (lower.includes('executed') || lower.includes('tool') || lower.includes('found 0')) {
|
|
314
|
+
return false;
|
|
315
|
+
}
|
|
316
|
+
// If it's a substantial answer (more than just status), it's final
|
|
317
|
+
if (result.length > 20 && !lower.includes('error')) {
|
|
318
|
+
return true;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
// Check if it's an answer type action result
|
|
322
|
+
return false;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
//# sourceMappingURL=react-orchestration-use-case.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-orchestration-use-case.js","sourceRoot":"","sources":["../../../src/application/use-cases/react-orchestration-use-case.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application Use Case: ReflexionUseCase
|
|
3
|
+
* Implements Reflexion pattern - converts failures to learnings
|
|
4
|
+
*/
|
|
5
|
+
import type { IAIService } from '../../domain/interfaces/ai-service.interface.js';
|
|
6
|
+
import { MemoryStreamService } from '../../infrastructure/storage/memory-stream-service.js';
|
|
7
|
+
import type { ReActTrajectory } from '../../domain/services/react-loop.js';
|
|
8
|
+
export interface ReflexionRequest {
|
|
9
|
+
trajectory: ReActTrajectory;
|
|
10
|
+
reward: number;
|
|
11
|
+
errors: string[];
|
|
12
|
+
testOutput?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface ReflexionResponse {
|
|
15
|
+
reflection: string;
|
|
16
|
+
stored: boolean;
|
|
17
|
+
}
|
|
18
|
+
export declare class ReflexionUseCase {
|
|
19
|
+
private aiService;
|
|
20
|
+
private memoryStream;
|
|
21
|
+
constructor(aiService: IAIService, memoryStream: MemoryStreamService);
|
|
22
|
+
execute(request: ReflexionRequest): Promise<ReflexionResponse>;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=reflexion-use-case.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reflexion-use-case.d.ts","sourceRoot":"","sources":["../../../src/application/use-cases/reflexion-use-case.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAClF,OAAO,EAAE,mBAAmB,EAAE,MAAM,uDAAuD,CAAC;AAC5F,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AAE3E,MAAM,WAAW,gBAAgB;IAC/B,UAAU,EAAE,eAAe,CAAC;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,OAAO,CAAC;CACjB;AAED,qBAAa,gBAAgB;IAEzB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,YAAY;gBADZ,SAAS,EAAE,UAAU,EACrB,YAAY,EAAE,mBAAmB;IAGrC,OAAO,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,iBAAiB,CAAC;CA6BrE"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application Use Case: ReflexionUseCase
|
|
3
|
+
* Implements Reflexion pattern - converts failures to learnings
|
|
4
|
+
*/
|
|
5
|
+
export class ReflexionUseCase {
|
|
6
|
+
aiService;
|
|
7
|
+
memoryStream;
|
|
8
|
+
constructor(aiService, memoryStream) {
|
|
9
|
+
this.aiService = aiService;
|
|
10
|
+
this.memoryStream = memoryStream;
|
|
11
|
+
}
|
|
12
|
+
async execute(request) {
|
|
13
|
+
// Only generate reflection if failed (reward < 1)
|
|
14
|
+
if (request.reward >= 1.0) {
|
|
15
|
+
return {
|
|
16
|
+
reflection: 'Task completed successfully',
|
|
17
|
+
stored: false,
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
// Generate reflection using self-reflection model
|
|
21
|
+
const reflection = await this.aiService.generateReflection(request.trajectory, request.reward, request.errors);
|
|
22
|
+
// Store reflection in memory stream
|
|
23
|
+
await this.memoryStream.recordReflection(reflection, request.trajectory, request.reward, request.errors);
|
|
24
|
+
return {
|
|
25
|
+
reflection,
|
|
26
|
+
stored: true,
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=reflexion-use-case.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reflexion-use-case.js","sourceRoot":"","sources":["../../../src/application/use-cases/reflexion-use-case.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAkBH,MAAM,OAAO,gBAAgB;IAEjB;IACA;IAFV,YACU,SAAqB,EACrB,YAAiC;QADjC,cAAS,GAAT,SAAS,CAAY;QACrB,iBAAY,GAAZ,YAAY,CAAqB;IACxC,CAAC;IAEJ,KAAK,CAAC,OAAO,CAAC,OAAyB;QACrC,kDAAkD;QAClD,IAAI,OAAO,CAAC,MAAM,IAAI,GAAG,EAAE,CAAC;YAC1B,OAAO;gBACL,UAAU,EAAE,6BAA6B;gBACzC,MAAM,EAAE,KAAK;aACd,CAAC;QACJ,CAAC;QAED,kDAAkD;QAClD,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,kBAAkB,CACxD,OAAO,CAAC,UAAU,EAClB,OAAO,CAAC,MAAM,EACd,OAAO,CAAC,MAAM,CACf,CAAC;QAEF,oCAAoC;QACpC,MAAM,IAAI,CAAC,YAAY,CAAC,gBAAgB,CACtC,UAAU,EACV,OAAO,CAAC,UAAU,EAClB,OAAO,CAAC,MAAM,EACd,OAAO,CAAC,MAAM,CACf,CAAC;QAEF,OAAO;YACL,UAAU;YACV,MAAM,EAAE,IAAI;SACb,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application: Deterministic Workflows
|
|
3
|
+
* Replace overloaded prompts with deterministic workflows for common patterns
|
|
4
|
+
* Faster, more predictable, lower cost than ReAct for common operations
|
|
5
|
+
*
|
|
6
|
+
* Based on ARCHITECTURAL_DECOMPOSITION.md analysis
|
|
7
|
+
*/
|
|
8
|
+
import type { IAIService } from '../../domain/interfaces/ai-service.interface.js';
|
|
9
|
+
import type { IEmbeddingRepository } from '../../domain/interfaces/embedding-repository.interface.js';
|
|
10
|
+
export interface WorkflowRequest {
|
|
11
|
+
query: string;
|
|
12
|
+
type: 'explain' | 'find' | 'simple-edit' | 'search';
|
|
13
|
+
}
|
|
14
|
+
export interface WorkflowResponse {
|
|
15
|
+
result: any;
|
|
16
|
+
success: boolean;
|
|
17
|
+
error?: string;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Deterministic workflow for explain operations
|
|
21
|
+
* Faster than ReAct - direct path with minimal LLM calls
|
|
22
|
+
*/
|
|
23
|
+
export declare class ExplainWorkflow {
|
|
24
|
+
private embeddingRepository;
|
|
25
|
+
private aiService;
|
|
26
|
+
constructor(embeddingRepository: IEmbeddingRepository, aiService: IAIService);
|
|
27
|
+
execute(query: string, filepath?: string): Promise<WorkflowResponse>;
|
|
28
|
+
private findFile;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Deterministic workflow for find/search operations
|
|
32
|
+
* Direct semantic search + answer generation
|
|
33
|
+
*/
|
|
34
|
+
export declare class FindWorkflow {
|
|
35
|
+
private embeddingRepository;
|
|
36
|
+
private aiService;
|
|
37
|
+
constructor(embeddingRepository: IEmbeddingRepository, aiService: IAIService);
|
|
38
|
+
execute(query: string, maxResults?: number): Promise<WorkflowResponse>;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Deterministic workflow for simple edits
|
|
42
|
+
* Direct edit generation without multi-step reasoning
|
|
43
|
+
*/
|
|
44
|
+
export declare class SimpleEditWorkflow {
|
|
45
|
+
private aiService;
|
|
46
|
+
constructor(aiService: IAIService);
|
|
47
|
+
execute(filepath: string, instruction: string): Promise<WorkflowResponse>;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Workflow Router
|
|
51
|
+
* Routes to appropriate deterministic workflow
|
|
52
|
+
*/
|
|
53
|
+
export declare class WorkflowRouter {
|
|
54
|
+
private explainWorkflow;
|
|
55
|
+
private findWorkflow;
|
|
56
|
+
private simpleEditWorkflow;
|
|
57
|
+
constructor(explainWorkflow: ExplainWorkflow, findWorkflow: FindWorkflow, simpleEditWorkflow: SimpleEditWorkflow);
|
|
58
|
+
route(request: WorkflowRequest): Promise<WorkflowResponse>;
|
|
59
|
+
private parseEditQuery;
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=deterministic-workflows.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deterministic-workflows.d.ts","sourceRoot":"","sources":["../../../src/application/workflows/deterministic-workflows.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAClF,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAC;AAEtG,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,GAAG,MAAM,GAAG,aAAa,GAAG,QAAQ,CAAC;CACrD;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,GAAG,CAAC;IACZ,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;GAGG;AACH,qBAAa,eAAe;IAExB,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,SAAS;gBADT,mBAAmB,EAAE,oBAAoB,EACzC,SAAS,EAAE,UAAU;IAGzB,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;YA6C5D,QAAQ;CAKvB;AAED;;;GAGG;AACH,qBAAa,YAAY;IAErB,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,SAAS;gBADT,mBAAmB,EAAE,oBAAoB,EACzC,SAAS,EAAE,UAAU;IAGzB,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,GAAE,MAAU,GAAG,OAAO,CAAC,gBAAgB,CAAC;CAqChF;AAED;;;GAGG;AACH,qBAAa,kBAAkB;IAE3B,OAAO,CAAC,SAAS;gBAAT,SAAS,EAAE,UAAU;IAGzB,OAAO,CAAC,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;CA0BhF;AAED;;;GAGG;AACH,qBAAa,cAAc;IAEvB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,kBAAkB;gBAFlB,eAAe,EAAE,eAAe,EAChC,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,kBAAkB;IAG1C,KAAK,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,gBAAgB,CAAC;IA4BhE,OAAO,CAAC,cAAc;CASvB"}
|