Skip to content
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

Fix: Broken link to multi-agent-collaboration notebook in agent_supervisor.ipynb #3146

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

apappascs
Copy link

This pull request fixes a broken link in the agent_supervisor.ipynb notebook.

The link to the "previous example" (the multi-agent-collaboration notebook) is currently incorrect. It points to:

https://github.com/langchain-ai/langgraph/blob/44840aa23f05edb9758eb63d5cbbef89438b26f7/docs/docs/tutorials/multi-agent-collaboration

This URL results in a 404 error because:

  1. It's missing the multi_agent subdirectory in the path.
  2. It's missing the .ipynb file extension.
  3. It's pointing to a specific commit hash (44840aa23f05edb9758eb63d5cbbef89438b26f7) instead of the main branch, making it fragile and prone to breaking in the future as the repository evolves.

Solution:

This PR updates the link in agent_supervisor.ipynb to:

./multi_agent/multi-agent-collaboration.ipynb

This corrected link:

  1. Uses a relative path to navigate to the correct subdirectory (multi_agent).
  2. Includes the .ipynb file extension.
  3. Ensures that the link points to the file on the main branch (by using a relative path within the same directory structure).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant