Skip to content

Commit 6ec81ec

Browse files
Fix static path
1 parent 8134421 commit 6ec81ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/agents_sdk/multi-agent-portfolio-collaboration/multi_agent_portfolio_collaboration.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"\n",
8585
"Our system follows a **hub-and-spoke design**. The **Portfolio Manager agent** is the hub (central coordinator), and the **specialist agents** are the spokes. The user's query (e.g. \"How would a planned interest rate reduction affect my GOOGL holdings?\") goes first to the Portfolio Manager. The Portfolio Manager agent is prompted to break down the problem and delegate to the appropriate specialist agents. It treats each specialist as a callable tool, invoking them for their portion of the analysis. All three report back to the Portfolio Manager, which then synthesizes a final answer for the user.\n",
8686
"\n",
87-
"![Multi-Agent Investment Report Workflow](static/agent_architecture.png)\n"
87+
"![Multi-Agent Investment Report Workflow](/static/agent_architecture.png)\n"
8888
]
8989
},
9090
{
@@ -392,7 +392,7 @@
392392
},
393393
{
394394
"cell_type": "code",
395-
"execution_count": 1,
395+
"execution_count": null,
396396
"id": "9fe6e452",
397397
"metadata": {},
398398
"outputs": [
@@ -490,7 +490,7 @@
490490
"from pathlib import Path\n",
491491
"from IPython.display import Markdown, display\n",
492492
"\n",
493-
"report_path = Path(\"static/example_output/investment_report.md\")\n",
493+
"report_path = Path(\"/static/example_output/investment_report.md\")\n",
494494
"if report_path.exists():\n",
495495
" with report_path.open(\"r\", encoding=\"utf-8\") as f:\n",
496496
" content = f.read()\n",

0 commit comments

Comments
 (0)