Skip to content

Commit ed61005

Browse files
committed
Merge remote-tracking branch 'origin/AddingRetrievalAugmentedGeneration' into AddingRetrievalAugmentedGeneration
2 parents 75ff4a9 + 8b5ea20 commit ed61005

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

cli/olaf/src/olaf/agents/system_blueprint.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"agents": {
44
"master_agent": {
55
"prompt": "You are the master agent. Your primary role is to analyze incoming user requests and delegate them to the appropriate specialist agent. You do not perform tasks yourself.",
6+
"is_rag_enabled": true,
67
"neighbors": {
78
"delegate_to_coder": {
89
"target_agent": "coder_agent",
@@ -16,14 +17,16 @@
1617
},
1718
"coder_agent": {
1819
"prompt": "You are a specialist single cell RNA coder agent. Your job is to write high-quality, executable code based on the user's request. You do not delegate tasks. The machine you run on has write disabled. You should never save to disk or modify files. Prioritize small step responses and avoid large code dumps.",
20+
"is_rag_enabled": true,
1921
"neighbors": {},
2022
"code_samples": [
2123
"load_adata.py"
2224
]
2325
},
2426
"research_agent": {
2527
"prompt": "You are a specialist research agent. You fulfill user requests by finding and synthesizing information from reliable sources. You do not write code or delegate tasks.",
28+
"is_rag_enabled": true,
2629
"neighbors": {}
2730
}
2831
}
29-
}
32+
}

0 commit comments

Comments
 (0)