Spaces:
Configuration error
Configuration error
v2.0: production multi-agent-system/index.ts
Browse files- multi-agent-system/index.ts +17 -17
multi-agent-system/index.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
| 1 |
/**
|
| 2 |
-
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 3 |
-
* MULTI-AGENT SYSTEM β Public API
|
| 4 |
-
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 5 |
-
*
|
| 6 |
-
* Entry point for the 8-agent forensic AI system.
|
| 7 |
-
* Import this file to use the system.
|
| 8 |
*/
|
| 9 |
|
| 10 |
-
|
| 11 |
-
export type { APIConfig, AgentResult, Finding, Correlation, MultiAgentReport, CaseInput, EvidenceItem, StratigraphyLayer } from './config';
|
|
|
|
| 12 |
|
| 13 |
-
|
| 14 |
-
export { TimelineAgent } from './
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
export { CorrelationAgent } from './
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
export { RiskAgent } from './agent-risk';
|
| 21 |
export { ForensicOrchestrator, orchestrator } from './orchestrator';
|
| 22 |
-
export {
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
/**
|
| 2 |
+
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 3 |
+
* MULTI-AGENT SYSTEM v2.0 β Public API
|
| 4 |
+
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
|
|
|
|
|
|
|
|
| 5 |
*/
|
| 6 |
|
| 7 |
+
// Core types
|
| 8 |
+
export type { APIConfig, AgentResult, Finding, Correlation, MultiAgentReport, CaseInput, EvidenceItem, StratigraphyLayer, Severity, AgentStatus } from './config';
|
| 9 |
+
export { loadAndValidateConfig, uid, now, safeJsonParse } from './config';
|
| 10 |
|
| 11 |
+
// Primary Agents (1-4)
|
| 12 |
+
export { AutopsyAgent, TimelineAgent, CCTVAgent, ToxicologyAgent } from './agents-primary';
|
| 13 |
+
|
| 14 |
+
// Secondary Agents (5-7)
|
| 15 |
+
export { CorrelationAgent, ExplainabilityAgent, RiskAgent } from './agents-secondary';
|
| 16 |
+
|
| 17 |
+
// Orchestrator (Agent 8)
|
|
|
|
| 18 |
export { ForensicOrchestrator, orchestrator } from './orchestrator';
|
| 19 |
+
export type { ProgressCallback } from './orchestrator';
|
| 20 |
+
|
| 21 |
+
// API Clients
|
| 22 |
+
export { callGemini, callFeatherless, callHuggingFaceNER, callHuggingFaceZeroShot, callHuggingFaceEmbeddings, getAvailableProviders } from './api-clients';
|