Skip to content

Fix static path #1869

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
},
{
Expand Down Expand Up @@ -392,7 +392,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"id": "9fe6e452",
"metadata": {},
"outputs": [
Expand Down Expand Up @@ -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",
Expand Down