-
Notifications
You must be signed in to change notification settings - Fork 330
Expand file tree
/
Copy pathagent.yaml
More file actions
99 lines (91 loc) · 2.45 KB
/
agent.yaml
File metadata and controls
99 lines (91 loc) · 2.45 KB
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
spec_version: "0.1.0"
name: nvidia-deep-researcher
version: 1.0.0
description: >
Multi-agent deep research system based on NVIDIA AIQ Blueprint.
Produces comprehensive 3000-5000 word research reports with inline citations,
structured TOC, and verified sources using a coordinated orchestrator-planner-researcher hierarchy.
model:
preferred: openai/gpt-oss-120b
fallback:
- nvidia/nemotron-3-super-120b-a12b
constraints:
temperature: 0.2
max_tokens: 16384
skills:
- web-search
- paper-search
- knowledge-retrieval
tools:
- tavily-web-search
- paper-search
- knowledge-retrieval
agents:
planner:
description: Builds research plan, TOC, and search queries from a research question
delegation:
mode: explicit
triggers:
- research_query_received
researcher:
description: Executes searches and synthesizes findings with inline citations
delegation:
mode: explicit
triggers:
- plan_ready
runtime:
max_turns: 50
timeout: 600
compliance:
risk_tier: high
supervision:
human_in_the_loop: conditional
escalation_triggers:
- confidence_below: 0.7
- action_type: report_publication
- error_detected: true
recordkeeping:
audit_logging: true
log_format: structured_json
retention_period: 1y
segregation_of_duties:
roles:
- id: orchestrator
description: Coordinates workflow, delegates to planner and researcher, writes final report
permissions:
- review
- approve
- submit
- id: planner
description: Builds research plan, generates TOC, and produces search queries
permissions:
- create
- submit
- id: researcher
description: Executes searches, evaluates sources, and writes findings with citations
permissions:
- execute
- create
- report
conflicts:
- [orchestrator, researcher]
- [planner, researcher]
assignments:
nvidia-deep-researcher: [orchestrator]
planner: [planner]
researcher: [researcher]
handoffs:
- action: publish_report
required_roles: [orchestrator, researcher]
approval_required: true
enforcement: strict
tags:
- research
- multi-agent
- nvidia
- aiq
- deep-researcher
metadata:
upstream: https://github.com/NVIDIA-AI-Blueprints/aiq
upstream_path: src/aiq_agent/agents/deep_researcher
blueprint: NVIDIA AIQ Deep Researcher