[PR #1674] [MERGED] docs: put documentation in the docs folder instead of examples #2222

Closed
opened 2026-02-20 17:46:34 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/1674
Author: @vbarda
Created: 9/10/2024
Status: Merged
Merged: 9/11/2024
Merged by: @vbarda

Base: mainHead: vb/remove-examples-and-copy-notebooks


📝 Commits (10+)

  • 0a73e5e docs: put everything in the docs folder instead of examples
  • df8a08d delete examples directory
  • 8d67483 bring back js helper
  • a0358a0 bring back python helpers
  • 25d3f7e Merge branch 'main' into vb/remove-examples-and-copy-notebooks
  • 486f29a run link check on docs
  • 2f986e3 exclude py files
  • 88b4259 add images properly
  • 72e83ca fix tnt
  • 170f222 fix link

📊 Changes

225 files changed (+51546 additions, -55383 deletions)

View changed files

📝 .github/workflows/deploy_docs.yml (+35 -0)
📝 .github/workflows/link_check.yml (+1 -39)
📝 .github/workflows/size.yml (+2 -1)
📝 Makefile (+0 -5)
📝 docs/.gitignore (+0 -2)
docs/_scripts/copy_notebooks.py (+0 -234)
docs/docs/cloud/how-tos/cloud_examples/img/webhook_results.png (+0 -0)
📝 docs/docs/cloud/how-tos/index.md (+1 -1)
docs/docs/cloud/how-tos/langgraph_to_langgraph_cloud.ipynb (+1063 -0)
📝 docs/docs/how-tos/async.ipynb (+322 -175)
docs/docs/how-tos/branching.ipynb (+650 -0)
docs/docs/how-tos/configuration.ipynb (+350 -0)
docs/docs/how-tos/create-react-agent-hitl.ipynb (+336 -0)
docs/docs/how-tos/create-react-agent-memory.ipynb (+249 -0)
docs/docs/how-tos/create-react-agent-system-prompt.ipynb (+201 -0)
docs/docs/how-tos/create-react-agent.ipynb (+276 -0)
docs/docs/how-tos/human_in_the_loop/breakpoints.ipynb (+475 -0)
docs/docs/how-tos/human_in_the_loop/dynamic_breakpoints.ipynb (+435 -0)
docs/docs/how-tos/human_in_the_loop/edit-graph-state.ipynb (+561 -0)
docs/docs/how-tos/human_in_the_loop/review-tool-calls.ipynb (+682 -0)

...and 80 more files

📄 Description

  • Moves documentation from examples/ directory to docs/ directory
  • Removes copy_notebooks script -- all of the notebooks are now loaded explicitly from their paths in docs/
  • Switches notebook link check to run after docs are built

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraph/pull/1674 **Author:** [@vbarda](https://github.com/vbarda) **Created:** 9/10/2024 **Status:** ✅ Merged **Merged:** 9/11/2024 **Merged by:** [@vbarda](https://github.com/vbarda) **Base:** `main` ← **Head:** `vb/remove-examples-and-copy-notebooks` --- ### 📝 Commits (10+) - [`0a73e5e`](https://github.com/langchain-ai/langgraph/commit/0a73e5e1c6a834400f679fc1b058285c5f4c25d6) docs: put everything in the docs folder instead of examples - [`df8a08d`](https://github.com/langchain-ai/langgraph/commit/df8a08dab3b116be9543b07d37957f3793d194b5) delete examples directory - [`8d67483`](https://github.com/langchain-ai/langgraph/commit/8d67483e5d6816966310a1b99eb90464516af5b5) bring back js helper - [`a0358a0`](https://github.com/langchain-ai/langgraph/commit/a0358a0a2297753baa7fd166d7fb19345522f446) bring back python helpers - [`25d3f7e`](https://github.com/langchain-ai/langgraph/commit/25d3f7ed01331b2ad9e4a87ab66a714dfebece65) Merge branch 'main' into vb/remove-examples-and-copy-notebooks - [`486f29a`](https://github.com/langchain-ai/langgraph/commit/486f29acab19bb9254ac94b899974377a84c02bb) run link check on docs - [`2f986e3`](https://github.com/langchain-ai/langgraph/commit/2f986e3944767996d7729cc254f336b763e0af21) exclude py files - [`88b4259`](https://github.com/langchain-ai/langgraph/commit/88b4259b8858bc643c242ae42f886ac984b8715b) add images properly - [`72e83ca`](https://github.com/langchain-ai/langgraph/commit/72e83ca7eb31e9e9d05062d8a72ca63167c5ec8a) fix tnt - [`170f222`](https://github.com/langchain-ai/langgraph/commit/170f2221f22c8ca536e47be1865e7e6c42675705) fix link ### 📊 Changes **225 files changed** (+51546 additions, -55383 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/deploy_docs.yml` (+35 -0) 📝 `.github/workflows/link_check.yml` (+1 -39) 📝 `.github/workflows/size.yml` (+2 -1) 📝 `Makefile` (+0 -5) 📝 `docs/.gitignore` (+0 -2) ➖ `docs/_scripts/copy_notebooks.py` (+0 -234) ➖ `docs/docs/cloud/how-tos/cloud_examples/img/webhook_results.png` (+0 -0) 📝 `docs/docs/cloud/how-tos/index.md` (+1 -1) ➕ `docs/docs/cloud/how-tos/langgraph_to_langgraph_cloud.ipynb` (+1063 -0) 📝 `docs/docs/how-tos/async.ipynb` (+322 -175) ➕ `docs/docs/how-tos/branching.ipynb` (+650 -0) ➕ `docs/docs/how-tos/configuration.ipynb` (+350 -0) ➕ `docs/docs/how-tos/create-react-agent-hitl.ipynb` (+336 -0) ➕ `docs/docs/how-tos/create-react-agent-memory.ipynb` (+249 -0) ➕ `docs/docs/how-tos/create-react-agent-system-prompt.ipynb` (+201 -0) ➕ `docs/docs/how-tos/create-react-agent.ipynb` (+276 -0) ➕ `docs/docs/how-tos/human_in_the_loop/breakpoints.ipynb` (+475 -0) ➕ `docs/docs/how-tos/human_in_the_loop/dynamic_breakpoints.ipynb` (+435 -0) ➕ `docs/docs/how-tos/human_in_the_loop/edit-graph-state.ipynb` (+561 -0) ➕ `docs/docs/how-tos/human_in_the_loop/review-tool-calls.ipynb` (+682 -0) _...and 80 more files_ </details> ### 📄 Description * Moves documentation from `examples/` directory to `docs/` directory * Removes `copy_notebooks` script -- all of the notebooks are now loaded explicitly from their paths in `docs/` * Switches notebook link check to run after docs are built --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-20 17:46:34 -05:00
yindo closed this issue 2026-02-20 17:46:34 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraph#2222