diff --git a/libs/deepagents/deepagents/graph.py b/libs/deepagents/deepagents/graph.py index f66db41e6..2dd07c607 100644 --- a/libs/deepagents/deepagents/graph.py +++ b/libs/deepagents/deepagents/graph.py @@ -1,6 +1,7 @@ """Deep Agents come with planning, filesystem, and subagents.""" from collections.abc import Callable, Sequence +from time import sleep from typing import Any, cast from langchain.agents import AgentState, create_agent @@ -202,6 +203,7 @@ def create_deep_agent( # noqa: C901, PLR0912 # Complex graph assembly logic wi Returns: A configured deep agent. """ + sleep(0.1) model = get_default_model() if model is None else resolve_model(model) backend = backend if backend is not None else StateBackend()