[PR #1263] refactor(sdk): making confing public with the same default. #1259

Open
opened 2026-02-16 09:18:33 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagents/pull/1263
Author: @gitaroktato
Created: 2/11/2026
Status: 🔄 Open

Base: mainHead: deep-agents-with-config


📝 Commits (3)

  • 7464a44 refactor(deepagents) Making confing public with the same default.
  • f22bdf7 refactor(deepagents): Reducing function complexity
  • 25113c3 Merge branch 'main' into deep-agents-with-config

📊 Changes

1 file changed (+66 additions, -29 deletions)

View changed files

📝 libs/deepagents/deepagents/graph.py (+66 -29)

📄 Description

Making configuration customizable, so a deepagent can be created with a custom configuration. Examples:

agent = create_deep_agent(
    model=MODEL,
    config={"recursion_limit": 100}
)
agent = create_deep_agent(
    model=MODEL,
    config={"callbacks": [my_callback_handler]
)

Social handles

Twitter: @gitaroktato
LinkedIn: https://linkedin.com/in/oresztesz/


🔄 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/deepagents/pull/1263 **Author:** [@gitaroktato](https://github.com/gitaroktato) **Created:** 2/11/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `deep-agents-with-config` --- ### 📝 Commits (3) - [`7464a44`](https://github.com/langchain-ai/deepagents/commit/7464a44443c403e27aaad68daac9702ef915a67e) refactor(deepagents) Making confing public with the same default. - [`f22bdf7`](https://github.com/langchain-ai/deepagents/commit/f22bdf7249361a194b364bbccba62ee41b4f2c32) refactor(deepagents): Reducing function complexity - [`25113c3`](https://github.com/langchain-ai/deepagents/commit/25113c389da6d8df3a0450ff045e50ce1523d5c4) Merge branch 'main' into deep-agents-with-config ### 📊 Changes **1 file changed** (+66 additions, -29 deletions) <details> <summary>View changed files</summary> 📝 `libs/deepagents/deepagents/graph.py` (+66 -29) </details> ### 📄 Description Making configuration customizable, so a deepagent can be created with a custom configuration. Examples: ```python agent = create_deep_agent( model=MODEL, config={"recursion_limit": 100} ) ``` ```python agent = create_deep_agent( model=MODEL, config={"callbacks": [my_callback_handler] ) ``` ## Social handles Twitter: @gitaroktato LinkedIn: https://linkedin.com/in/oresztesz/ --- <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-16 09:18:33 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/deepagents#1259