Spaces:
Running
Running
File size: 21,475 Bytes
3aa91e9 cbd94a4 3aa91e9 cbd94a4 3aa91e9 cbd94a4 3aa91e9 cbd94a4 3aa91e9 cbd94a4 3aa91e9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 |
# DeepCritical Workflow - Simplified Magentic Architecture
> **Architecture Pattern**: Microsoft Magentic Orchestration
> **Design Philosophy**: Simple, dynamic, manager-driven coordination
> **Key Innovation**: Intelligent manager replaces rigid sequential phases
---
## 1. High-Level Magentic Workflow
```mermaid
flowchart TD
Start([User Query]) --> Manager[Magentic Manager<br/>Plan β’ Select β’ Assess β’ Adapt]
Manager -->|Plans| Task1[Task Decomposition]
Task1 --> Manager
Manager -->|Selects & Executes| HypAgent[Hypothesis Agent]
Manager -->|Selects & Executes| SearchAgent[Search Agent]
Manager -->|Selects & Executes| AnalysisAgent[Analysis Agent]
Manager -->|Selects & Executes| ReportAgent[Report Agent]
HypAgent -->|Results| Manager
SearchAgent -->|Results| Manager
AnalysisAgent -->|Results| Manager
ReportAgent -->|Results| Manager
Manager -->|Assesses Quality| Decision{Good Enough?}
Decision -->|No - Refine| Manager
Decision -->|No - Different Agent| Manager
Decision -->|No - Stalled| Replan[Reset Plan]
Replan --> Manager
Decision -->|Yes| Synthesis[Synthesize Final Result]
Synthesis --> Output([Research Report])
style Start fill:#e1f5e1
style Manager fill:#ffe6e6
style HypAgent fill:#fff4e6
style SearchAgent fill:#fff4e6
style AnalysisAgent fill:#fff4e6
style ReportAgent fill:#fff4e6
style Decision fill:#ffd6d6
style Synthesis fill:#d4edda
style Output fill:#e1f5e1
```
## 2. Magentic Manager: The 6-Phase Cycle
```mermaid
flowchart LR
P1[1. Planning<br/>Analyze task<br/>Create strategy] --> P2[2. Agent Selection<br/>Pick best agent<br/>for subtask]
P2 --> P3[3. Execution<br/>Run selected<br/>agent with tools]
P3 --> P4[4. Assessment<br/>Evaluate quality<br/>Check progress]
P4 --> Decision{Quality OK?<br/>Progress made?}
Decision -->|Yes| P6[6. Synthesis<br/>Combine results<br/>Generate report]
Decision -->|No| P5[5. Iteration<br/>Adjust plan<br/>Try again]
P5 --> P2
P6 --> Done([Complete])
style P1 fill:#fff4e6
style P2 fill:#ffe6e6
style P3 fill:#e6f3ff
style P4 fill:#ffd6d6
style P5 fill:#fff3cd
style P6 fill:#d4edda
style Done fill:#e1f5e1
```
## 3. Simplified Agent Architecture
```mermaid
graph TB
subgraph "Orchestration Layer"
Manager[Magentic Manager<br/>β’ Plans workflow<br/>β’ Selects agents<br/>β’ Assesses quality<br/>β’ Adapts strategy]
SharedContext[(Shared Context<br/>β’ Hypotheses<br/>β’ Search Results<br/>β’ Analysis<br/>β’ Progress)]
Manager <--> SharedContext
end
subgraph "Specialist Agents"
HypAgent[Hypothesis Agent<br/>β’ Domain understanding<br/>β’ Hypothesis generation<br/>β’ Testability refinement]
SearchAgent[Search Agent<br/>β’ Multi-source search<br/>β’ RAG retrieval<br/>β’ Result ranking]
AnalysisAgent[Analysis Agent<br/>β’ Evidence extraction<br/>β’ Statistical analysis<br/>β’ Code execution]
ReportAgent[Report Agent<br/>β’ Report assembly<br/>β’ Visualization<br/>β’ Citation formatting]
end
subgraph "MCP Tools"
WebSearch[Web Search<br/>PubMed β’ arXiv β’ bioRxiv]
CodeExec[Code Execution<br/>Sandboxed Python]
RAG[RAG Retrieval<br/>Vector DB β’ Embeddings]
Viz[Visualization<br/>Charts β’ Graphs]
end
Manager -->|Selects & Directs| HypAgent
Manager -->|Selects & Directs| SearchAgent
Manager -->|Selects & Directs| AnalysisAgent
Manager -->|Selects & Directs| ReportAgent
HypAgent --> SharedContext
SearchAgent --> SharedContext
AnalysisAgent --> SharedContext
ReportAgent --> SharedContext
SearchAgent --> WebSearch
SearchAgent --> RAG
AnalysisAgent --> CodeExec
ReportAgent --> CodeExec
ReportAgent --> Viz
style Manager fill:#ffe6e6
style SharedContext fill:#ffe6f0
style HypAgent fill:#fff4e6
style SearchAgent fill:#fff4e6
style AnalysisAgent fill:#fff4e6
style ReportAgent fill:#fff4e6
style WebSearch fill:#e6f3ff
style CodeExec fill:#e6f3ff
style RAG fill:#e6f3ff
style Viz fill:#e6f3ff
```
## 4. Dynamic Workflow Example
```mermaid
sequenceDiagram
participant User
participant Manager
participant HypAgent
participant SearchAgent
participant AnalysisAgent
participant ReportAgent
User->>Manager: "Research protein folding in Alzheimer's"
Note over Manager: PLAN: Generate hypotheses β Search β Analyze β Report
Manager->>HypAgent: Generate 3 hypotheses
HypAgent-->>Manager: Returns 3 hypotheses
Note over Manager: ASSESS: Good quality, proceed
Manager->>SearchAgent: Search literature for hypothesis 1
SearchAgent-->>Manager: Returns 15 papers
Note over Manager: ASSESS: Good results, continue
Manager->>SearchAgent: Search for hypothesis 2
SearchAgent-->>Manager: Only 2 papers found
Note over Manager: ASSESS: Insufficient, refine search
Manager->>SearchAgent: Refined query for hypothesis 2
SearchAgent-->>Manager: Returns 12 papers
Note over Manager: ASSESS: Better, proceed
Manager->>AnalysisAgent: Analyze evidence for all hypotheses
AnalysisAgent-->>Manager: Returns analysis with code
Note over Manager: ASSESS: Complete, generate report
Manager->>ReportAgent: Create comprehensive report
ReportAgent-->>Manager: Returns formatted report
Note over Manager: SYNTHESIZE: Combine all results
Manager->>User: Final Research Report
```
## 5. Manager Decision Logic
```mermaid
flowchart TD
Start([Manager Receives Task]) --> Plan[Create Initial Plan]
Plan --> Select[Select Agent for Next Subtask]
Select --> Execute[Execute Agent]
Execute --> Collect[Collect Results]
Collect --> Assess[Assess Quality & Progress]
Assess --> Q1{Quality Sufficient?}
Q1 -->|No| Q2{Same Agent Can Fix?}
Q2 -->|Yes| Feedback[Provide Specific Feedback]
Feedback --> Execute
Q2 -->|No| Different[Try Different Agent]
Different --> Select
Q1 -->|Yes| Q3{Task Complete?}
Q3 -->|No| Q4{Making Progress?}
Q4 -->|Yes| Select
Q4 -->|No - Stalled| Replan[Reset Plan & Approach]
Replan --> Plan
Q3 -->|Yes| Synth[Synthesize Final Result]
Synth --> Done([Return Report])
style Start fill:#e1f5e1
style Plan fill:#fff4e6
style Select fill:#ffe6e6
style Execute fill:#e6f3ff
style Assess fill:#ffd6d6
style Q1 fill:#ffe6e6
style Q2 fill:#ffe6e6
style Q3 fill:#ffe6e6
style Q4 fill:#ffe6e6
style Synth fill:#d4edda
style Done fill:#e1f5e1
```
## 6. Hypothesis Agent Workflow
```mermaid
flowchart LR
Input[Research Query] --> Domain[Identify Domain<br/>& Key Concepts]
Domain --> Context[Retrieve Background<br/>Knowledge]
Context --> Generate[Generate 3-5<br/>Initial Hypotheses]
Generate --> Refine[Refine for<br/>Testability]
Refine --> Rank[Rank by<br/>Quality Score]
Rank --> Output[Return Top<br/>Hypotheses]
Output --> Struct[Hypothesis Structure:<br/>β’ Statement<br/>β’ Rationale<br/>β’ Testability Score<br/>β’ Data Requirements<br/>β’ Expected Outcomes]
style Input fill:#e1f5e1
style Output fill:#fff4e6
style Struct fill:#e6f3ff
```
## 7. Search Agent Workflow
```mermaid
flowchart TD
Input[Hypotheses] --> Strategy[Formulate Search<br/>Strategy per Hypothesis]
Strategy --> Multi[Multi-Source Search]
Multi --> PubMed[PubMed Search<br/>via MCP]
Multi --> ArXiv[arXiv Search<br/>via MCP]
Multi --> BioRxiv[bioRxiv Search<br/>via MCP]
PubMed --> Aggregate[Aggregate Results]
ArXiv --> Aggregate
BioRxiv --> Aggregate
Aggregate --> Filter[Filter & Rank<br/>by Relevance]
Filter --> Dedup[Deduplicate<br/>Cross-Reference]
Dedup --> Embed[Embed Documents<br/>via MCP]
Embed --> Vector[(Vector DB)]
Vector --> RAGRetrieval[RAG Retrieval<br/>Top-K per Hypothesis]
RAGRetrieval --> Output[Return Contextualized<br/>Search Results]
style Input fill:#fff4e6
style Multi fill:#ffe6e6
style Vector fill:#ffe6f0
style Output fill:#e6f3ff
```
## 8. Analysis Agent Workflow
```mermaid
flowchart TD
Input1[Hypotheses] --> Extract
Input2[Search Results] --> Extract[Extract Evidence<br/>per Hypothesis]
Extract --> Methods[Determine Analysis<br/>Methods Needed]
Methods --> Branch{Requires<br/>Computation?}
Branch -->|Yes| GenCode[Generate Python<br/>Analysis Code]
Branch -->|No| Qual[Qualitative<br/>Synthesis]
GenCode --> Execute[Execute Code<br/>via MCP Sandbox]
Execute --> Interpret1[Interpret<br/>Results]
Qual --> Interpret2[Interpret<br/>Findings]
Interpret1 --> Synthesize[Synthesize Evidence<br/>Across Sources]
Interpret2 --> Synthesize
Synthesize --> Verdict[Determine Verdict<br/>per Hypothesis]
Verdict --> Support[β’ Supported<br/>β’ Refuted<br/>β’ Inconclusive]
Support --> Gaps[Identify Knowledge<br/>Gaps & Limitations]
Gaps --> Output[Return Analysis<br/>Report]
style Input1 fill:#fff4e6
style Input2 fill:#e6f3ff
style Execute fill:#ffe6e6
style Output fill:#e6ffe6
```
## 9. Report Agent Workflow
```mermaid
flowchart TD
Input1[Query] --> Assemble
Input2[Hypotheses] --> Assemble
Input3[Search Results] --> Assemble
Input4[Analysis] --> Assemble[Assemble Report<br/>Sections]
Assemble --> Exec[Executive Summary]
Assemble --> Intro[Introduction]
Assemble --> Methods[Methods]
Assemble --> Results[Results per<br/>Hypothesis]
Assemble --> Discussion[Discussion]
Assemble --> Future[Future Directions]
Assemble --> Refs[References]
Results --> VizCheck{Needs<br/>Visualization?}
VizCheck -->|Yes| GenViz[Generate Viz Code]
GenViz --> ExecViz[Execute via MCP<br/>Create Charts]
ExecViz --> Combine
VizCheck -->|No| Combine[Combine All<br/>Sections]
Exec --> Combine
Intro --> Combine
Methods --> Combine
Discussion --> Combine
Future --> Combine
Refs --> Combine
Combine --> Format[Format Output]
Format --> MD[Markdown]
Format --> PDF[PDF]
Format --> JSON[JSON]
MD --> Output[Return Final<br/>Report]
PDF --> Output
JSON --> Output
style Input1 fill:#e1f5e1
style Input2 fill:#fff4e6
style Input3 fill:#e6f3ff
style Input4 fill:#e6ffe6
style Output fill:#d4edda
```
## 10. Data Flow & Event Streaming
```mermaid
flowchart TD
User[π€ User] -->|Research Query| UI[Gradio UI]
UI -->|Submit| Manager[Magentic Manager]
Manager -->|Event: Planning| UI
Manager -->|Select Agent| HypAgent[Hypothesis Agent]
HypAgent -->|Event: Delta/Message| UI
HypAgent -->|Hypotheses| Context[(Shared Context)]
Context -->|Retrieved by| Manager
Manager -->|Select Agent| SearchAgent[Search Agent]
SearchAgent -->|MCP Request| WebSearch[Web Search Tool]
WebSearch -->|Results| SearchAgent
SearchAgent -->|Event: Delta/Message| UI
SearchAgent -->|Documents| Context
SearchAgent -->|Embeddings| VectorDB[(Vector DB)]
Context -->|Retrieved by| Manager
Manager -->|Select Agent| AnalysisAgent[Analysis Agent]
AnalysisAgent -->|MCP Request| CodeExec[Code Execution Tool]
CodeExec -->|Results| AnalysisAgent
AnalysisAgent -->|Event: Delta/Message| UI
AnalysisAgent -->|Analysis| Context
Context -->|Retrieved by| Manager
Manager -->|Select Agent| ReportAgent[Report Agent]
ReportAgent -->|MCP Request| CodeExec
ReportAgent -->|Event: Delta/Message| UI
ReportAgent -->|Report| Context
Manager -->|Event: Final Result| UI
UI -->|Display| User
style User fill:#e1f5e1
style UI fill:#e6f3ff
style Manager fill:#ffe6e6
style Context fill:#ffe6f0
style VectorDB fill:#ffe6f0
style WebSearch fill:#f0f0f0
style CodeExec fill:#f0f0f0
```
## 11. MCP Tool Architecture
```mermaid
graph TB
subgraph "Agent Layer"
Manager[Magentic Manager]
HypAgent[Hypothesis Agent]
SearchAgent[Search Agent]
AnalysisAgent[Analysis Agent]
ReportAgent[Report Agent]
end
subgraph "MCP Protocol Layer"
Registry[MCP Tool Registry<br/>β’ Discovers tools<br/>β’ Routes requests<br/>β’ Manages connections]
end
subgraph "MCP Servers"
Server1[Web Search Server<br/>localhost:8001<br/>β’ PubMed<br/>β’ arXiv<br/>β’ bioRxiv]
Server2[Code Execution Server<br/>localhost:8002<br/>β’ Sandboxed Python<br/>β’ Package management]
Server3[RAG Server<br/>localhost:8003<br/>β’ Vector embeddings<br/>β’ Similarity search]
Server4[Visualization Server<br/>localhost:8004<br/>β’ Chart generation<br/>β’ Plot rendering]
end
subgraph "External Services"
PubMed[PubMed API]
ArXiv[arXiv API]
BioRxiv[bioRxiv API]
Modal[Modal Sandbox]
ChromaDB[(ChromaDB)]
end
SearchAgent -->|Request| Registry
AnalysisAgent -->|Request| Registry
ReportAgent -->|Request| Registry
Registry --> Server1
Registry --> Server2
Registry --> Server3
Registry --> Server4
Server1 --> PubMed
Server1 --> ArXiv
Server1 --> BioRxiv
Server2 --> Modal
Server3 --> ChromaDB
style Manager fill:#ffe6e6
style Registry fill:#fff4e6
style Server1 fill:#e6f3ff
style Server2 fill:#e6f3ff
style Server3 fill:#e6f3ff
style Server4 fill:#e6f3ff
```
## 12. Progress Tracking & Stall Detection
```mermaid
stateDiagram-v2
[*] --> Initialization: User Query
Initialization --> Planning: Manager starts
Planning --> AgentExecution: Select agent
AgentExecution --> Assessment: Collect results
Assessment --> QualityCheck: Evaluate output
QualityCheck --> AgentExecution: Poor quality<br/>(retry < max_rounds)
QualityCheck --> Planning: Poor quality<br/>(try different agent)
QualityCheck --> NextAgent: Good quality<br/>(task incomplete)
QualityCheck --> Synthesis: Good quality<br/>(task complete)
NextAgent --> AgentExecution: Select next agent
state StallDetection <<choice>>
Assessment --> StallDetection: Check progress
StallDetection --> Planning: No progress<br/>(stall count < max)
StallDetection --> ErrorRecovery: No progress<br/>(max stalls reached)
ErrorRecovery --> PartialReport: Generate partial results
PartialReport --> [*]
Synthesis --> FinalReport: Combine all outputs
FinalReport --> [*]
note right of QualityCheck
Manager assesses:
β’ Output completeness
β’ Quality metrics
β’ Progress made
end note
note right of StallDetection
Stall = no new progress
after agent execution
Triggers plan reset
end note
```
## 13. Gradio UI Integration
```mermaid
graph TD
App[Gradio App<br/>DeepCritical Research Agent]
App --> Input[Input Section]
App --> Status[Status Section]
App --> Output[Output Section]
Input --> Query[Research Question<br/>Text Area]
Input --> Controls[Controls]
Controls --> MaxHyp[Max Hypotheses: 1-10]
Controls --> MaxRounds[Max Rounds: 5-20]
Controls --> Submit[Start Research Button]
Status --> Log[Real-time Event Log<br/>β’ Manager planning<br/>β’ Agent selection<br/>β’ Execution updates<br/>β’ Quality assessment]
Status --> Progress[Progress Tracker<br/>β’ Current agent<br/>β’ Round count<br/>β’ Stall count]
Output --> Tabs[Tabbed Results]
Tabs --> Tab1[Hypotheses Tab<br/>Generated hypotheses with scores]
Tabs --> Tab2[Search Results Tab<br/>Papers & sources found]
Tabs --> Tab3[Analysis Tab<br/>Evidence & verdicts]
Tabs --> Tab4[Report Tab<br/>Final research report]
Tab4 --> Download[Download Report<br/>MD / PDF / JSON]
Submit -.->|Triggers| Workflow[Magentic Workflow]
Workflow -.->|MagenticOrchestratorMessageEvent| Log
Workflow -.->|MagenticAgentDeltaEvent| Log
Workflow -.->|MagenticAgentMessageEvent| Log
Workflow -.->|MagenticFinalResultEvent| Tab4
style App fill:#e1f5e1
style Input fill:#fff4e6
style Status fill:#e6f3ff
style Output fill:#e6ffe6
style Workflow fill:#ffe6e6
```
## 14. Complete System Context
```mermaid
graph LR
User[π€ Researcher<br/>Asks research questions] -->|Submits query| DC[DeepCritical<br/>Magentic Workflow]
DC -->|Literature search| PubMed[PubMed API<br/>Medical papers]
DC -->|Preprint search| ArXiv[arXiv API<br/>Scientific preprints]
DC -->|Biology search| BioRxiv[bioRxiv API<br/>Biology preprints]
DC -->|Agent reasoning| Claude[Claude API<br/>Sonnet 4 / Opus]
DC -->|Code execution| Modal[Modal Sandbox<br/>Safe Python env]
DC -->|Vector storage| Chroma[ChromaDB<br/>Embeddings & RAG]
DC -->|Deployed on| HF[HuggingFace Spaces<br/>Gradio 6.0]
PubMed -->|Results| DC
ArXiv -->|Results| DC
BioRxiv -->|Results| DC
Claude -->|Responses| DC
Modal -->|Output| DC
Chroma -->|Context| DC
DC -->|Research report| User
style User fill:#e1f5e1
style DC fill:#ffe6e6
style PubMed fill:#e6f3ff
style ArXiv fill:#e6f3ff
style BioRxiv fill:#e6f3ff
style Claude fill:#ffd6d6
style Modal fill:#f0f0f0
style Chroma fill:#ffe6f0
style HF fill:#d4edda
```
## 15. Workflow Timeline (Simplified)
```mermaid
gantt
title DeepCritical Magentic Workflow - Typical Execution
dateFormat mm:ss
axisFormat %M:%S
section Manager Planning
Initial planning :p1, 00:00, 10s
section Hypothesis Agent
Generate hypotheses :h1, after p1, 30s
Manager assessment :h2, after h1, 5s
section Search Agent
Search hypothesis 1 :s1, after h2, 20s
Search hypothesis 2 :s2, after s1, 20s
Search hypothesis 3 :s3, after s2, 20s
RAG processing :s4, after s3, 15s
Manager assessment :s5, after s4, 5s
section Analysis Agent
Evidence extraction :a1, after s5, 15s
Code generation :a2, after a1, 20s
Code execution :a3, after a2, 25s
Synthesis :a4, after a3, 20s
Manager assessment :a5, after a4, 5s
section Report Agent
Report assembly :r1, after a5, 30s
Visualization :r2, after r1, 15s
Formatting :r3, after r2, 10s
section Manager Synthesis
Final synthesis :f1, after r3, 10s
```
---
## Key Differences from Original Design
| Aspect | Original (Judge-in-Loop) | New (Magentic) |
|--------|-------------------------|----------------|
| **Control Flow** | Fixed sequential phases | Dynamic agent selection |
| **Quality Control** | Separate Judge Agent | Manager assessment built-in |
| **Retry Logic** | Phase-level with feedback | Agent-level with adaptation |
| **Flexibility** | Rigid 4-phase pipeline | Adaptive workflow |
| **Complexity** | 5 agents (including Judge) | 4 agents (no Judge) |
| **Progress Tracking** | Manual state management | Built-in round/stall detection |
| **Agent Coordination** | Sequential handoff | Manager-driven dynamic selection |
| **Error Recovery** | Retry same phase | Try different agent or replan |
---
## Simplified Design Principles
1. **Manager is Intelligent**: LLM-powered manager handles planning, selection, and quality assessment
2. **No Separate Judge**: Manager's assessment phase replaces dedicated Judge Agent
3. **Dynamic Workflow**: Agents can be called multiple times in any order based on need
4. **Built-in Safety**: max_round_count (15) and max_stall_count (3) prevent infinite loops
5. **Event-Driven UI**: Real-time streaming updates to Gradio interface
6. **MCP-Powered Tools**: All external capabilities via Model Context Protocol
7. **Shared Context**: Centralized state accessible to all agents
8. **Progress Awareness**: Manager tracks what's been done and what's needed
---
## Legend
- π΄ **Red/Pink**: Manager, orchestration, decision-making
- π‘ **Yellow/Orange**: Specialist agents, processing
- π΅ **Blue**: Data, tools, MCP services
- π£ **Purple/Pink**: Storage, databases, state
- π’ **Green**: User interactions, final outputs
- βͺ **Gray**: External services, APIs
---
## Implementation Highlights
**Simple 4-Agent Setup:**
```python
workflow = (
MagenticBuilder()
.participants(
hypothesis=HypothesisAgent(tools=[background_tool]),
search=SearchAgent(tools=[web_search, rag_tool]),
analysis=AnalysisAgent(tools=[code_execution]),
report=ReportAgent(tools=[code_execution, visualization])
)
.with_standard_manager(
chat_client=AnthropicClient(model="claude-sonnet-4"),
max_round_count=15, # Prevent infinite loops
max_stall_count=3 # Detect stuck workflows
)
.build()
)
```
**Manager handles quality assessment in its instructions:**
- Checks hypothesis quality (testable, novel, clear)
- Validates search results (relevant, authoritative, recent)
- Assesses analysis soundness (methodology, evidence, conclusions)
- Ensures report completeness (all sections, proper citations)
No separate Judge Agent needed - manager does it all!
---
**Document Version**: 2.0 (Magentic Simplified)
**Last Updated**: 2025-11-24
**Architecture**: Microsoft Magentic Orchestration Pattern
**Agents**: 4 (Hypothesis, Search, Analysis, Report) + 1 Manager
**License**: MIT
|