[PR #47] [MERGED] Update build script, lint, fix tracing in examples #444

Closed
opened 2026-02-15 18:17:00 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/47
Author: @jacoblee93
Created: 2/2/2024
Status: Merged
Merged: 2/2/2024
Merged by: @jacoblee93

Base: mainHead: jacob/tracing


📝 Commits (5)

  • 86487e1 Pass runnable config through lambda calls for tracing
  • 0ab7dca Add config to examples
  • cfc27d5 Fix Deno notebook .env imports
  • a7adc43 Update build script, lint, fix tracing in examples
  • 9f50be2 Merge

📊 Changes

20 files changed (+1463 additions, -884 deletions)

View changed files

deno.lock (+766 -0)
📝 examples/agent_executor/base.ipynb (+44 -34)
📝 examples/chat_agent_executor_with_function_calling/base.ipynb (+0 -1)
📝 examples/multi_agent/agent_supervisor.ipynb (+190 -59)
📝 examples/multi_agent/hierarchical_agent_teams.ipynb (+236 -350)
examples/multi_agent/img/simple_multi_agent_diagram.png (+0 -0)
📝 examples/multi_agent/multi_agent_collaboration.ipynb (+125 -120)
📝 langgraph/.gitignore (+3 -0)
langgraph/.prettierrc (+19 -0)
langgraph/langchain.config.js (+24 -0)
📝 langgraph/package.json (+33 -12)
langgraph/scripts/check-tree-shaking.js (+0 -80)
langgraph/scripts/create-entrypoints.js (+0 -102)
langgraph/scripts/identify-secrets.js (+0 -77)
langgraph/scripts/move-cjs-to-dist.js (+0 -38)
langgraph/scripts/release-branch.sh (+0 -6)
📝 langgraph/src/pregel/index.ts (+4 -0)
📝 langgraph/src/tests/prebuilt.test.ts (+2 -2)
📝 langgraph/src/tests/pregel.test.ts (+3 -3)
📝 yarn.lock (+14 -0)

📄 Description

CC @nfcampos @bracesproul


🔄 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/langgraphjs/pull/47 **Author:** [@jacoblee93](https://github.com/jacoblee93) **Created:** 2/2/2024 **Status:** ✅ Merged **Merged:** 2/2/2024 **Merged by:** [@jacoblee93](https://github.com/jacoblee93) **Base:** `main` ← **Head:** `jacob/tracing` --- ### 📝 Commits (5) - [`86487e1`](https://github.com/langchain-ai/langgraphjs/commit/86487e1094faaf284c34f2a812403bd805f87976) Pass runnable config through lambda calls for tracing - [`0ab7dca`](https://github.com/langchain-ai/langgraphjs/commit/0ab7dca0e5ea05e84329246481ad8f3fe85dc37d) Add config to examples - [`cfc27d5`](https://github.com/langchain-ai/langgraphjs/commit/cfc27d570772a3ba49dcbbfaf6873525f616cab9) Fix Deno notebook .env imports - [`a7adc43`](https://github.com/langchain-ai/langgraphjs/commit/a7adc439c07685e28e66ae08351baabdd5a7f6ec) Update build script, lint, fix tracing in examples - [`9f50be2`](https://github.com/langchain-ai/langgraphjs/commit/9f50be2d0396f7d14021576155c70c3e1185842b) Merge ### 📊 Changes **20 files changed** (+1463 additions, -884 deletions) <details> <summary>View changed files</summary> ➕ `deno.lock` (+766 -0) 📝 `examples/agent_executor/base.ipynb` (+44 -34) 📝 `examples/chat_agent_executor_with_function_calling/base.ipynb` (+0 -1) 📝 `examples/multi_agent/agent_supervisor.ipynb` (+190 -59) 📝 `examples/multi_agent/hierarchical_agent_teams.ipynb` (+236 -350) ➕ `examples/multi_agent/img/simple_multi_agent_diagram.png` (+0 -0) 📝 `examples/multi_agent/multi_agent_collaboration.ipynb` (+125 -120) 📝 `langgraph/.gitignore` (+3 -0) ➕ `langgraph/.prettierrc` (+19 -0) ➕ `langgraph/langchain.config.js` (+24 -0) 📝 `langgraph/package.json` (+33 -12) ➖ `langgraph/scripts/check-tree-shaking.js` (+0 -80) ➖ `langgraph/scripts/create-entrypoints.js` (+0 -102) ➖ `langgraph/scripts/identify-secrets.js` (+0 -77) ➖ `langgraph/scripts/move-cjs-to-dist.js` (+0 -38) ➖ `langgraph/scripts/release-branch.sh` (+0 -6) 📝 `langgraph/src/pregel/index.ts` (+4 -0) 📝 `langgraph/src/tests/prebuilt.test.ts` (+2 -2) 📝 `langgraph/src/tests/pregel.test.ts` (+3 -3) 📝 `yarn.lock` (+14 -0) </details> ### 📄 Description CC @nfcampos @bracesproul --- <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-15 18:17:00 -05:00
yindo closed this issue 2026-02-15 18:17:00 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#444