diff --git a/examples/agents_sdk/multi-agent-portfolio-collaboration/multi_agent_portfolio_collaboration.ipynb b/examples/agents_sdk/multi-agent-portfolio-collaboration/multi_agent_portfolio_collaboration.ipynb index 8edbfa4e2a..a3060c9344 100644 --- a/examples/agents_sdk/multi-agent-portfolio-collaboration/multi_agent_portfolio_collaboration.ipynb +++ b/examples/agents_sdk/multi-agent-portfolio-collaboration/multi_agent_portfolio_collaboration.ipynb @@ -84,7 +84,7 @@ "\n", "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", "\n", - "![Multi-Agent Investment Report Workflow](static/agent_architecture.png)\n" + "![Multi-Agent Investment Report Workflow](/static/agent_architecture.png)\n" ] }, { @@ -392,7 +392,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "9fe6e452", "metadata": {}, "outputs": [ @@ -490,7 +490,7 @@ "from pathlib import Path\n", "from IPython.display import Markdown, display\n", "\n", - "report_path = Path(\"static/example_output/investment_report.md\")\n", + "report_path = Path(\"/static/example_output/investment_report.md\")\n", "if report_path.exists():\n", " with report_path.open(\"r\", encoding=\"utf-8\") as f:\n", " content = f.read()\n",