[PR #347] [CLOSED] add some missing type annotations #617

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagents/pull/347
Author: @eyurtsev
Created: 11/11/2025
Status: Closed

Base: masterHead: eugene/add_missing_type_annotations


📝 Commits (10+)

📊 Changes

25 files changed (+2851 additions, -99 deletions)

View changed files

📝 libs/deepagents-cli/Makefile (+2 -0)
📝 libs/deepagents-cli/deepagents_cli/agent.py (+104 -28)
📝 libs/deepagents-cli/deepagents_cli/execution.py (+3 -1)
📝 libs/deepagents-cli/deepagents_cli/file_ops.py (+21 -5)
libs/deepagents-cli/deepagents_cli/integrations/__init__.py (+3 -0)
libs/deepagents-cli/deepagents_cli/integrations/daytona.py (+46 -0)
libs/deepagents-cli/deepagents_cli/integrations/modal.py (+63 -0)
libs/deepagents-cli/deepagents_cli/integrations/runloop.py (+80 -0)
📝 libs/deepagents-cli/deepagents_cli/main.py (+189 -16)
libs/deepagents-cli/deepagents_cli/sandbox_factory.py (+267 -0)
📝 libs/deepagents-cli/deepagents_cli/ui.py (+22 -1)
📝 libs/deepagents-cli/pyproject.toml (+2 -0)
📝 libs/deepagents/backends/composite.py (+40 -1)
📝 libs/deepagents/backends/protocol.py (+45 -0)
libs/deepagents/backends/sandbox.py (+344 -0)
📝 libs/deepagents/graph.py (+7 -3)
📝 libs/deepagents/middleware/filesystem.py (+222 -20)
📝 libs/deepagents/tests/integration_tests/test_filesystem_middleware.py (+141 -0)
📝 libs/deepagents/tests/unit_tests/backends/test_composite_backend.py (+90 -5)
📝 libs/deepagents/tests/unit_tests/backends/test_filesystem_backend.py (+2 -1)

...and 5 more files

📄 Description

  • x
  • x
  • x
  • x
  • x
  • x
  • x
  • x
  • improve prompt (#342)
  • rough v0.1 of sandbox + cli: (#328)
  • x

🔄 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/347 **Author:** [@eyurtsev](https://github.com/eyurtsev) **Created:** 11/11/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `eugene/add_missing_type_annotations` --- ### 📝 Commits (10+) - [`92d761d`](https://github.com/langchain-ai/deepagents/commit/92d761d0df134334d67c132434c163d18ec2880e) x - [`5e1e3ba`](https://github.com/langchain-ai/deepagents/commit/5e1e3ba70eb70e4e73cfcea6569144fd21bacb05) x - [`9955fbe`](https://github.com/langchain-ai/deepagents/commit/9955fbe195aad591932899877686f3468b371126) x - [`a83993a`](https://github.com/langchain-ai/deepagents/commit/a83993a9c211da57ce5b2eefb29107c6e11c955b) x - [`c61fab7`](https://github.com/langchain-ai/deepagents/commit/c61fab7ea7d6bab957ca821065f9ccec789eba18) x - [`cbc88b8`](https://github.com/langchain-ai/deepagents/commit/cbc88b861014f4db9b464c8d697c5ae7773c293e) x - [`6c06e98`](https://github.com/langchain-ai/deepagents/commit/6c06e988b574a0a95e8046121069016195817d6d) x - [`46466f5`](https://github.com/langchain-ai/deepagents/commit/46466f5156123aa6e3111d0ee284dc2162642f36) x - [`f24016f`](https://github.com/langchain-ai/deepagents/commit/f24016f78aef4540d5fd6907b0151f638dcb7d16) improve prompt (#342) - [`cd9e113`](https://github.com/langchain-ai/deepagents/commit/cd9e113e79c5cd87b99f21148de02b2aa21f4336) rough v0.1 of sandbox + cli: (#328) ### 📊 Changes **25 files changed** (+2851 additions, -99 deletions) <details> <summary>View changed files</summary> 📝 `libs/deepagents-cli/Makefile` (+2 -0) 📝 `libs/deepagents-cli/deepagents_cli/agent.py` (+104 -28) 📝 `libs/deepagents-cli/deepagents_cli/execution.py` (+3 -1) 📝 `libs/deepagents-cli/deepagents_cli/file_ops.py` (+21 -5) ➕ `libs/deepagents-cli/deepagents_cli/integrations/__init__.py` (+3 -0) ➕ `libs/deepagents-cli/deepagents_cli/integrations/daytona.py` (+46 -0) ➕ `libs/deepagents-cli/deepagents_cli/integrations/modal.py` (+63 -0) ➕ `libs/deepagents-cli/deepagents_cli/integrations/runloop.py` (+80 -0) 📝 `libs/deepagents-cli/deepagents_cli/main.py` (+189 -16) ➕ `libs/deepagents-cli/deepagents_cli/sandbox_factory.py` (+267 -0) 📝 `libs/deepagents-cli/deepagents_cli/ui.py` (+22 -1) 📝 `libs/deepagents-cli/pyproject.toml` (+2 -0) 📝 `libs/deepagents/backends/composite.py` (+40 -1) 📝 `libs/deepagents/backends/protocol.py` (+45 -0) ➕ `libs/deepagents/backends/sandbox.py` (+344 -0) 📝 `libs/deepagents/graph.py` (+7 -3) 📝 `libs/deepagents/middleware/filesystem.py` (+222 -20) 📝 `libs/deepagents/tests/integration_tests/test_filesystem_middleware.py` (+141 -0) 📝 `libs/deepagents/tests/unit_tests/backends/test_composite_backend.py` (+90 -5) 📝 `libs/deepagents/tests/unit_tests/backends/test_filesystem_backend.py` (+2 -1) _...and 5 more files_ </details> ### 📄 Description - x - x - x - x - x - x - x - x - improve prompt (#342) - rough v0.1 of sandbox + cli: (#328) - x --- <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:16:33 -05:00
yindo closed this issue 2026-02-16 09:16: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#617