Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/_scripts/copy_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
_MANUAL = {
"how-tos": [
"examples/how-tos/persistence.ipynb",
"examples/how-tos/stream-tokens.ipynb",
],
"tutorials": [
"rag/langgraph_agentic_rag.ipynb",
Expand Down
3 changes: 2 additions & 1 deletion docs/docs/how-tos/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ Welcome to the LangGraphJS How-to Guides! These guides provide practical, step-b

The core guides show how to address common needs when building a out AI workflows, with special focus placed on [ReAct](https://arxiv.org/abs/2210.03629)-style agents with [tool calling](https://js.langchain.com/v0.2/docs/how_to/tool_calling/).

- [Persistence](persistence.ipynb): How to give your graph "memory" and resiliance by saving and loading state
- [Persistence](persistence.ipynb): How to give your graph "memory" and resiliance by saving and loading state
- [Stream tokens](stream-tokens.ipynb): How to stream tokens and tool calls from your agent within a graph
1 change: 1 addition & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ nav:
- 'how-tos/index.md'
- Core:
- 'how-tos/persistence.ipynb'
- 'how-tos/stream-tokens.ipynb'
- "Conceptual Guides":
- 'concepts/index.md'
- "Reference":
Expand Down
Loading