[PR #38] [MERGED] Nc/state #1190

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/38
Author: @nfcampos
Created: 1/16/2024
Status: Merged
Merged: 1/16/2024
Merged by: @nfcampos

Base: mainHead: nc/state


📝 Commits (10+)

📊 Changes

35 files changed (+7668 additions, -1686 deletions)

View changed files

📝 Dockerfile (+2 -2)
📝 README.md (+396 -256)
examples/agent_executor/base.ipynb (+334 -0)
examples/agent_executor/force-calling-a-tool-first.ipynb (+399 -0)
examples/agent_executor/high-level.ipynb (+363 -0)
examples/agent_executor/human-in-the-loop.ipynb (+373 -0)
examples/agent_executor/managing-agent-steps.ipynb (+360 -0)
examples/async.ipynb (+616 -0)
examples/chat_agent_executor_with_function_calling/base.ipynb (+569 -0)
examples/chat_agent_executor_with_function_calling/dynamically-returning-directly.ipynb (+565 -0)
examples/chat_agent_executor_with_function_calling/force-calling-a-tool-first.ipynb (+485 -0)
examples/chat_agent_executor_with_function_calling/high-level.ipynb (+136 -0)
examples/chat_agent_executor_with_function_calling/human-in-the-loop.ipynb (+471 -0)
examples/chat_agent_executor_with_function_calling/managing-agent-steps.ipynb (+463 -0)
examples/chat_agent_executor_with_function_calling/respond-in-format.ipynb (+458 -0)
examples/combine_docs.ipynb (+0 -371)
examples/draft-revise-loop.py (+0 -116)
examples/langgraph.ipynb (+0 -400)
examples/rag.py (+0 -58)
examples/readme.py (+0 -132)

...and 15 more files

📄 Description

No description provided


🔄 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/38 **Author:** [@nfcampos](https://github.com/nfcampos) **Created:** 1/16/2024 **Status:** ✅ Merged **Merged:** 1/16/2024 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `nc/state` --- ### 📝 Commits (10+) - [`426a5c1`](https://github.com/langchain-ai/langgraph/commit/426a5c1b10de1fc81db1efa644703ba9f5c38985) Implement StateGraph - [`3857713`](https://github.com/langchain-ai/langgraph/commit/38577136015382926138b567601cdbca6690fd78) Lint - [`3d58aff`](https://github.com/langchain-ai/langgraph/commit/3d58aff93edb3f940bb152bed641f2e7ac642605) Add async test - [`d68faa6`](https://github.com/langchain-ai/langgraph/commit/d68faa6d06b10eb5b0e5988516ae37a93d46e74e) Update tracing name - [`e497d14`](https://github.com/langchain-ai/langgraph/commit/e497d14db01ddde77f691755ebad8227453dc05c) Fixes - [`ec219c4`](https://github.com/langchain-ai/langgraph/commit/ec219c4d493bbfcadf4f9e2768c3ef2a06cd5ce1) cr - [`6383e24`](https://github.com/langchain-ai/langgraph/commit/6383e24b0820479dd11f88315062375af76d17f1) Manually mark runs as hidden in langsmith - [`f6894fb`](https://github.com/langchain-ai/langgraph/commit/f6894fb5ddd00137f1a9bc00f80161a532e38d67) Add input_keys, rename output_keys, add interrupt - [`da5e6d7`](https://github.com/langchain-ai/langgraph/commit/da5e6d7319c8ac152d9ac79fb78e632daa760cbc) stash - [`db8d02c`](https://github.com/langchain-ai/langgraph/commit/db8d02c517a6f2e4c5ada511ea7f7bce9ba0e13f) Merge branch 'nc/state' of github.com:langchain-ai/permchain into nc/state ### 📊 Changes **35 files changed** (+7668 additions, -1686 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+2 -2) 📝 `README.md` (+396 -256) ➕ `examples/agent_executor/base.ipynb` (+334 -0) ➕ `examples/agent_executor/force-calling-a-tool-first.ipynb` (+399 -0) ➕ `examples/agent_executor/high-level.ipynb` (+363 -0) ➕ `examples/agent_executor/human-in-the-loop.ipynb` (+373 -0) ➕ `examples/agent_executor/managing-agent-steps.ipynb` (+360 -0) ➕ `examples/async.ipynb` (+616 -0) ➕ `examples/chat_agent_executor_with_function_calling/base.ipynb` (+569 -0) ➕ `examples/chat_agent_executor_with_function_calling/dynamically-returning-directly.ipynb` (+565 -0) ➕ `examples/chat_agent_executor_with_function_calling/force-calling-a-tool-first.ipynb` (+485 -0) ➕ `examples/chat_agent_executor_with_function_calling/high-level.ipynb` (+136 -0) ➕ `examples/chat_agent_executor_with_function_calling/human-in-the-loop.ipynb` (+471 -0) ➕ `examples/chat_agent_executor_with_function_calling/managing-agent-steps.ipynb` (+463 -0) ➕ `examples/chat_agent_executor_with_function_calling/respond-in-format.ipynb` (+458 -0) ➖ `examples/combine_docs.ipynb` (+0 -371) ➖ `examples/draft-revise-loop.py` (+0 -116) ➖ `examples/langgraph.ipynb` (+0 -400) ➖ `examples/rag.py` (+0 -58) ➖ `examples/readme.py` (+0 -132) _...and 15 more files_ </details> ### 📄 Description _No description provided_ --- <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:44:08 -05:00
yindo closed this issue 2026-02-20 17:44:08 -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#1190