langchain 1.0.0a11__tar.gz → 1.0.0a12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of langchain might be problematic. Click here for more details.
- {langchain-1.0.0a11 → langchain-1.0.0a12}/.gitignore +1 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/PKG-INFO +1 -1
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/__init__.py +1 -1
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/factory.py +14 -14
- {langchain-1.0.0a11 → langchain-1.0.0a12}/pyproject.toml +1 -1
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/__snapshots__/test_middleware_agent.ambr +51 -51
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/__snapshots__/test_middleware_decorators.ambr +13 -13
- {langchain-1.0.0a11 → langchain-1.0.0a12}/uv.lock +2 -2
- {langchain-1.0.0a11 → langchain-1.0.0a12}/LICENSE +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/Makefile +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/README.md +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/extended_testing_deps.txt +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/_internal/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/_internal/_documents.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/_internal/_lazy_import.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/_internal/_prompts.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/_internal/_typing.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/_internal/_utils.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/_internal/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/_internal/_typing.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/context_editing.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/human_in_the_loop.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/model_call_limit.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/model_fallback.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/pii.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/planning.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/prompt_caching.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/summarization.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/tool_call_limit.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/tool_selection.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/middleware/types.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/agents/structured_output.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/chat_models/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/chat_models/base.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/documents/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/embeddings/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/embeddings/base.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/embeddings/cache.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/messages/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/py.typed +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/rate_limiters/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/storage/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/storage/encoder_backed.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/storage/exceptions.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/storage/in_memory.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/tools/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/langchain/tools/tool_node.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/scripts/check_imports.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/agents/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/agents/test_response_format.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/cache/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/cache/fake_embeddings.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/chat_models/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/chat_models/test_base.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/conftest.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/embeddings/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/embeddings/test_base.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/test_compile.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/any_str.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/compose-postgres.yml +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/compose-redis.yml +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/conftest.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/conftest_checkpointer.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/conftest_store.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/memory_assert.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/messages.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/middleware/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/middleware/test_before_after_agent.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/middleware/test_llm_tool_selection.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/model.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/specifications/responses.json +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/specifications/return_direct.json +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_context_editing_middleware.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_middleware_agent.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_middleware_decorators.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_middleware_tools.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_pii_middleware.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_react_agent.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_response_format.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_responses.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_responses_spec.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_return_direct_spec.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_tool_call_limit.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_tool_node.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/utils.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/chat_models/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/chat_models/test_chat_models.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/conftest.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/embeddings/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/embeddings/test_base.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/embeddings/test_caching.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/embeddings/test_imports.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/storage/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/storage/test_imports.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/stubs.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/test_dependencies.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/test_imports.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/test_pytest_config.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/tools/__init__.py +0 -0
- {langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/tools/test_imports.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langchain
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0a12
|
|
4
4
|
Summary: Building applications with LLMs through composability
|
|
5
5
|
Project-URL: Source Code, https://github.com/langchain-ai/langchain/tree/master/libs/langchain
|
|
6
6
|
Project-URL: Release Notes, https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain%3D%3D0%22&expanded=true
|
|
@@ -219,7 +219,7 @@ def create_agent( # noqa: PLR0915
|
|
|
219
219
|
model: The language model for the agent. Can be a string identifier
|
|
220
220
|
(e.g., ``"openai:gpt-4"``), a chat model instance (e.g., ``ChatOpenAI()``).
|
|
221
221
|
tools: A list of tools, dicts, or callables. If ``None`` or an empty list,
|
|
222
|
-
the agent will consist of a
|
|
222
|
+
the agent will consist of a model node without a tool calling loop.
|
|
223
223
|
system_prompt: An optional system prompt for the LLM. If provided as a string,
|
|
224
224
|
it will be converted to a SystemMessage and added to the beginning
|
|
225
225
|
of the message list.
|
|
@@ -608,7 +608,7 @@ def create_agent( # noqa: PLR0915
|
|
|
608
608
|
)
|
|
609
609
|
return request.model.bind(**request.model_settings), None
|
|
610
610
|
|
|
611
|
-
def
|
|
611
|
+
def model_node(state: AgentState, runtime: Runtime[ContextT]) -> dict[str, Any]:
|
|
612
612
|
"""Sync model request handler with sequential middleware processing."""
|
|
613
613
|
request = ModelRequest(
|
|
614
614
|
model=model,
|
|
@@ -674,7 +674,7 @@ def create_agent( # noqa: PLR0915
|
|
|
674
674
|
msg = f"Maximum retry attempts ({max_attempts}) exceeded"
|
|
675
675
|
raise RuntimeError(msg)
|
|
676
676
|
|
|
677
|
-
async def
|
|
677
|
+
async def amodel_node(state: AgentState, runtime: Runtime[ContextT]) -> dict[str, Any]:
|
|
678
678
|
"""Async model request handler with sequential middleware processing."""
|
|
679
679
|
request = ModelRequest(
|
|
680
680
|
model=model,
|
|
@@ -724,7 +724,7 @@ def create_agent( # noqa: PLR0915
|
|
|
724
724
|
raise RuntimeError(msg)
|
|
725
725
|
|
|
726
726
|
# Use sync or async based on model capabilities
|
|
727
|
-
graph.add_node("
|
|
727
|
+
graph.add_node("model", RunnableCallable(model_node, amodel_node, trace=False))
|
|
728
728
|
|
|
729
729
|
# Only add tools node if we have tools
|
|
730
730
|
if tool_node is not None:
|
|
@@ -808,27 +808,27 @@ def create_agent( # noqa: PLR0915
|
|
|
808
808
|
after_agent_node = RunnableCallable(sync_after_agent, async_after_agent, trace=False)
|
|
809
809
|
graph.add_node(f"{m.name}.after_agent", after_agent_node, input_schema=state_schema)
|
|
810
810
|
|
|
811
|
-
# Determine the entry node (runs once at start): before_agent -> before_model ->
|
|
811
|
+
# Determine the entry node (runs once at start): before_agent -> before_model -> model
|
|
812
812
|
if middleware_w_before_agent:
|
|
813
813
|
entry_node = f"{middleware_w_before_agent[0].name}.before_agent"
|
|
814
814
|
elif middleware_w_before_model:
|
|
815
815
|
entry_node = f"{middleware_w_before_model[0].name}.before_model"
|
|
816
816
|
else:
|
|
817
|
-
entry_node = "
|
|
817
|
+
entry_node = "model"
|
|
818
818
|
|
|
819
819
|
# Determine the loop entry node (beginning of agent loop, excludes before_agent)
|
|
820
820
|
# This is where tools will loop back to for the next iteration
|
|
821
821
|
if middleware_w_before_model:
|
|
822
822
|
loop_entry_node = f"{middleware_w_before_model[0].name}.before_model"
|
|
823
823
|
else:
|
|
824
|
-
loop_entry_node = "
|
|
824
|
+
loop_entry_node = "model"
|
|
825
825
|
|
|
826
826
|
# Determine the loop exit node (end of each iteration, can run multiple times)
|
|
827
|
-
# This is after_model or
|
|
827
|
+
# This is after_model or model, but NOT after_agent
|
|
828
828
|
if middleware_w_after_model:
|
|
829
829
|
loop_exit_node = f"{middleware_w_after_model[0].name}.after_model"
|
|
830
830
|
else:
|
|
831
|
-
loop_exit_node = "
|
|
831
|
+
loop_exit_node = "model"
|
|
832
832
|
|
|
833
833
|
# Determine the exit node (runs once at end): after_agent or END
|
|
834
834
|
if middleware_w_after_agent:
|
|
@@ -860,7 +860,7 @@ def create_agent( # noqa: PLR0915
|
|
|
860
860
|
_make_model_to_model_edge(loop_entry_node, exit_node),
|
|
861
861
|
[loop_entry_node, exit_node],
|
|
862
862
|
)
|
|
863
|
-
elif loop_exit_node == "
|
|
863
|
+
elif loop_exit_node == "model":
|
|
864
864
|
# If no tools and no after_model, go directly to exit_node
|
|
865
865
|
graph.add_edge(loop_exit_node, exit_node)
|
|
866
866
|
# No tools but we have after_model - connect after_model to exit_node
|
|
@@ -883,7 +883,7 @@ def create_agent( # noqa: PLR0915
|
|
|
883
883
|
loop_entry_node,
|
|
884
884
|
can_jump_to=_get_can_jump_to(m1, "before_agent"),
|
|
885
885
|
)
|
|
886
|
-
# Connect last before_agent to loop_entry_node (before_model or
|
|
886
|
+
# Connect last before_agent to loop_entry_node (before_model or model)
|
|
887
887
|
_add_middleware_edge(
|
|
888
888
|
graph,
|
|
889
889
|
f"{middleware_w_before_agent[-1].name}.before_agent",
|
|
@@ -902,18 +902,18 @@ def create_agent( # noqa: PLR0915
|
|
|
902
902
|
loop_entry_node,
|
|
903
903
|
can_jump_to=_get_can_jump_to(m1, "before_model"),
|
|
904
904
|
)
|
|
905
|
-
# Go directly to
|
|
905
|
+
# Go directly to model after the last before_model
|
|
906
906
|
_add_middleware_edge(
|
|
907
907
|
graph,
|
|
908
908
|
f"{middleware_w_before_model[-1].name}.before_model",
|
|
909
|
-
"
|
|
909
|
+
"model",
|
|
910
910
|
loop_entry_node,
|
|
911
911
|
can_jump_to=_get_can_jump_to(middleware_w_before_model[-1], "before_model"),
|
|
912
912
|
)
|
|
913
913
|
|
|
914
914
|
# Add after_model middleware edges
|
|
915
915
|
if middleware_w_after_model:
|
|
916
|
-
graph.add_edge("
|
|
916
|
+
graph.add_edge("model", f"{middleware_w_after_model[-1].name}.after_model")
|
|
917
917
|
for idx in range(len(middleware_w_after_model) - 1, 0, -1):
|
|
918
918
|
m1 = middleware_w_after_model[idx]
|
|
919
919
|
m2 = middleware_w_after_model[idx - 1]
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
---
|
|
9
9
|
graph TD;
|
|
10
10
|
__start__([<p>__start__</p>]):::first
|
|
11
|
-
|
|
11
|
+
model(model)
|
|
12
12
|
__end__([<p>__end__</p>]):::last
|
|
13
|
-
__start__ -->
|
|
14
|
-
|
|
13
|
+
__start__ --> model;
|
|
14
|
+
model --> __end__;
|
|
15
15
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
16
16
|
classDef first fill-opacity:0
|
|
17
17
|
classDef last fill:#bfb6fc
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
---
|
|
28
28
|
graph TD;
|
|
29
29
|
__start__([<p>__start__</p>]):::first
|
|
30
|
-
|
|
30
|
+
model(model)
|
|
31
31
|
NoopOne\2ebefore_model(NoopOne.before_model)
|
|
32
32
|
__end__([<p>__end__</p>]):::last
|
|
33
|
-
NoopOne\2ebefore_model -->
|
|
33
|
+
NoopOne\2ebefore_model --> model;
|
|
34
34
|
__start__ --> NoopOne\2ebefore_model;
|
|
35
|
-
|
|
35
|
+
model --> __end__;
|
|
36
36
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
37
37
|
classDef first fill-opacity:0
|
|
38
38
|
classDef last fill:#bfb6fc
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
---
|
|
49
49
|
graph TD;
|
|
50
50
|
__start__([<p>__start__</p>]):::first
|
|
51
|
-
|
|
51
|
+
model(model)
|
|
52
52
|
NoopTen\2ebefore_model(NoopTen.before_model)
|
|
53
53
|
NoopTen\2eafter_model(NoopTen.after_model)
|
|
54
54
|
__end__([<p>__end__</p>]):::last
|
|
55
|
-
NoopTen\2ebefore_model -->
|
|
55
|
+
NoopTen\2ebefore_model --> model;
|
|
56
56
|
__start__ --> NoopTen\2ebefore_model;
|
|
57
|
-
|
|
57
|
+
model --> NoopTen\2eafter_model;
|
|
58
58
|
NoopTen\2eafter_model --> __end__;
|
|
59
59
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
60
60
|
classDef first fill-opacity:0
|
|
@@ -71,17 +71,17 @@
|
|
|
71
71
|
---
|
|
72
72
|
graph TD;
|
|
73
73
|
__start__([<p>__start__</p>]):::first
|
|
74
|
-
|
|
74
|
+
model(model)
|
|
75
75
|
NoopTen\2ebefore_model(NoopTen.before_model)
|
|
76
76
|
NoopTen\2eafter_model(NoopTen.after_model)
|
|
77
77
|
NoopEleven\2ebefore_model(NoopEleven.before_model)
|
|
78
78
|
NoopEleven\2eafter_model(NoopEleven.after_model)
|
|
79
79
|
__end__([<p>__end__</p>]):::last
|
|
80
80
|
NoopEleven\2eafter_model --> NoopTen\2eafter_model;
|
|
81
|
-
NoopEleven\2ebefore_model -->
|
|
81
|
+
NoopEleven\2ebefore_model --> model;
|
|
82
82
|
NoopTen\2ebefore_model --> NoopEleven\2ebefore_model;
|
|
83
83
|
__start__ --> NoopTen\2ebefore_model;
|
|
84
|
-
|
|
84
|
+
model --> NoopEleven\2eafter_model;
|
|
85
85
|
NoopTen\2eafter_model --> __end__;
|
|
86
86
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
87
87
|
classDef first fill-opacity:0
|
|
@@ -98,14 +98,14 @@
|
|
|
98
98
|
---
|
|
99
99
|
graph TD;
|
|
100
100
|
__start__([<p>__start__</p>]):::first
|
|
101
|
-
|
|
101
|
+
model(model)
|
|
102
102
|
NoopOne\2ebefore_model(NoopOne.before_model)
|
|
103
103
|
NoopTwo\2ebefore_model(NoopTwo.before_model)
|
|
104
104
|
__end__([<p>__end__</p>]):::last
|
|
105
105
|
NoopOne\2ebefore_model --> NoopTwo\2ebefore_model;
|
|
106
|
-
NoopTwo\2ebefore_model -->
|
|
106
|
+
NoopTwo\2ebefore_model --> model;
|
|
107
107
|
__start__ --> NoopOne\2ebefore_model;
|
|
108
|
-
|
|
108
|
+
model --> __end__;
|
|
109
109
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
110
110
|
classDef first fill-opacity:0
|
|
111
111
|
classDef last fill:#bfb6fc
|
|
@@ -121,16 +121,16 @@
|
|
|
121
121
|
---
|
|
122
122
|
graph TD;
|
|
123
123
|
__start__([<p>__start__</p>]):::first
|
|
124
|
-
|
|
124
|
+
model(model)
|
|
125
125
|
NoopOne\2ebefore_model(NoopOne.before_model)
|
|
126
126
|
NoopTwo\2ebefore_model(NoopTwo.before_model)
|
|
127
127
|
NoopThree\2ebefore_model(NoopThree.before_model)
|
|
128
128
|
__end__([<p>__end__</p>]):::last
|
|
129
129
|
NoopOne\2ebefore_model --> NoopTwo\2ebefore_model;
|
|
130
|
-
NoopThree\2ebefore_model -->
|
|
130
|
+
NoopThree\2ebefore_model --> model;
|
|
131
131
|
NoopTwo\2ebefore_model --> NoopThree\2ebefore_model;
|
|
132
132
|
__start__ --> NoopOne\2ebefore_model;
|
|
133
|
-
|
|
133
|
+
model --> __end__;
|
|
134
134
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
135
135
|
classDef first fill-opacity:0
|
|
136
136
|
classDef last fill:#bfb6fc
|
|
@@ -146,11 +146,11 @@
|
|
|
146
146
|
---
|
|
147
147
|
graph TD;
|
|
148
148
|
__start__([<p>__start__</p>]):::first
|
|
149
|
-
|
|
149
|
+
model(model)
|
|
150
150
|
NoopFour\2eafter_model(NoopFour.after_model)
|
|
151
151
|
__end__([<p>__end__</p>]):::last
|
|
152
|
-
__start__ -->
|
|
153
|
-
|
|
152
|
+
__start__ --> model;
|
|
153
|
+
model --> NoopFour\2eafter_model;
|
|
154
154
|
NoopFour\2eafter_model --> __end__;
|
|
155
155
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
156
156
|
classDef first fill-opacity:0
|
|
@@ -167,13 +167,13 @@
|
|
|
167
167
|
---
|
|
168
168
|
graph TD;
|
|
169
169
|
__start__([<p>__start__</p>]):::first
|
|
170
|
-
|
|
170
|
+
model(model)
|
|
171
171
|
NoopFour\2eafter_model(NoopFour.after_model)
|
|
172
172
|
NoopFive\2eafter_model(NoopFive.after_model)
|
|
173
173
|
__end__([<p>__end__</p>]):::last
|
|
174
174
|
NoopFive\2eafter_model --> NoopFour\2eafter_model;
|
|
175
|
-
__start__ -->
|
|
176
|
-
|
|
175
|
+
__start__ --> model;
|
|
176
|
+
model --> NoopFive\2eafter_model;
|
|
177
177
|
NoopFour\2eafter_model --> __end__;
|
|
178
178
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
179
179
|
classDef first fill-opacity:0
|
|
@@ -190,15 +190,15 @@
|
|
|
190
190
|
---
|
|
191
191
|
graph TD;
|
|
192
192
|
__start__([<p>__start__</p>]):::first
|
|
193
|
-
|
|
193
|
+
model(model)
|
|
194
194
|
NoopFour\2eafter_model(NoopFour.after_model)
|
|
195
195
|
NoopFive\2eafter_model(NoopFive.after_model)
|
|
196
196
|
NoopSix\2eafter_model(NoopSix.after_model)
|
|
197
197
|
__end__([<p>__end__</p>]):::last
|
|
198
198
|
NoopFive\2eafter_model --> NoopFour\2eafter_model;
|
|
199
199
|
NoopSix\2eafter_model --> NoopFive\2eafter_model;
|
|
200
|
-
__start__ -->
|
|
201
|
-
|
|
200
|
+
__start__ --> model;
|
|
201
|
+
model --> NoopSix\2eafter_model;
|
|
202
202
|
NoopFour\2eafter_model --> __end__;
|
|
203
203
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
204
204
|
classDef first fill-opacity:0
|
|
@@ -215,13 +215,13 @@
|
|
|
215
215
|
---
|
|
216
216
|
graph TD;
|
|
217
217
|
__start__([<p>__start__</p>]):::first
|
|
218
|
-
|
|
218
|
+
model(model)
|
|
219
219
|
NoopSeven\2ebefore_model(NoopSeven.before_model)
|
|
220
220
|
NoopSeven\2eafter_model(NoopSeven.after_model)
|
|
221
221
|
__end__([<p>__end__</p>]):::last
|
|
222
|
-
NoopSeven\2ebefore_model -->
|
|
222
|
+
NoopSeven\2ebefore_model --> model;
|
|
223
223
|
__start__ --> NoopSeven\2ebefore_model;
|
|
224
|
-
|
|
224
|
+
model --> NoopSeven\2eafter_model;
|
|
225
225
|
NoopSeven\2eafter_model --> __end__;
|
|
226
226
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
227
227
|
classDef first fill-opacity:0
|
|
@@ -238,17 +238,17 @@
|
|
|
238
238
|
---
|
|
239
239
|
graph TD;
|
|
240
240
|
__start__([<p>__start__</p>]):::first
|
|
241
|
-
|
|
241
|
+
model(model)
|
|
242
242
|
NoopSeven\2ebefore_model(NoopSeven.before_model)
|
|
243
243
|
NoopSeven\2eafter_model(NoopSeven.after_model)
|
|
244
244
|
NoopEight\2ebefore_model(NoopEight.before_model)
|
|
245
245
|
NoopEight\2eafter_model(NoopEight.after_model)
|
|
246
246
|
__end__([<p>__end__</p>]):::last
|
|
247
247
|
NoopEight\2eafter_model --> NoopSeven\2eafter_model;
|
|
248
|
-
NoopEight\2ebefore_model -->
|
|
248
|
+
NoopEight\2ebefore_model --> model;
|
|
249
249
|
NoopSeven\2ebefore_model --> NoopEight\2ebefore_model;
|
|
250
250
|
__start__ --> NoopSeven\2ebefore_model;
|
|
251
|
-
|
|
251
|
+
model --> NoopEight\2eafter_model;
|
|
252
252
|
NoopSeven\2eafter_model --> __end__;
|
|
253
253
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
254
254
|
classDef first fill-opacity:0
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
---
|
|
266
266
|
graph TD;
|
|
267
267
|
__start__([<p>__start__</p>]):::first
|
|
268
|
-
|
|
268
|
+
model(model)
|
|
269
269
|
NoopSeven\2ebefore_model(NoopSeven.before_model)
|
|
270
270
|
NoopSeven\2eafter_model(NoopSeven.after_model)
|
|
271
271
|
NoopEight\2ebefore_model(NoopEight.before_model)
|
|
@@ -276,10 +276,10 @@
|
|
|
276
276
|
NoopEight\2eafter_model --> NoopSeven\2eafter_model;
|
|
277
277
|
NoopEight\2ebefore_model --> NoopNine\2ebefore_model;
|
|
278
278
|
NoopNine\2eafter_model --> NoopEight\2eafter_model;
|
|
279
|
-
NoopNine\2ebefore_model -->
|
|
279
|
+
NoopNine\2ebefore_model --> model;
|
|
280
280
|
NoopSeven\2ebefore_model --> NoopEight\2ebefore_model;
|
|
281
281
|
__start__ --> NoopSeven\2ebefore_model;
|
|
282
|
-
|
|
282
|
+
model --> NoopNine\2eafter_model;
|
|
283
283
|
NoopSeven\2eafter_model --> __end__;
|
|
284
284
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
285
285
|
classDef first fill-opacity:0
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
---
|
|
297
297
|
graph TD;
|
|
298
298
|
__start__([<p>__start__</p>]):::first
|
|
299
|
-
|
|
299
|
+
model(model)
|
|
300
300
|
tools(tools)
|
|
301
301
|
NoopSeven\2ebefore_model(NoopSeven.before_model)
|
|
302
302
|
NoopSeven\2eafter_model(NoopSeven.after_model)
|
|
@@ -305,13 +305,13 @@
|
|
|
305
305
|
__end__([<p>__end__</p>]):::last
|
|
306
306
|
NoopEight\2eafter_model --> NoopSeven\2eafter_model;
|
|
307
307
|
NoopEight\2ebefore_model -.-> __end__;
|
|
308
|
-
NoopEight\2ebefore_model -.->
|
|
308
|
+
NoopEight\2ebefore_model -.-> model;
|
|
309
309
|
NoopSeven\2eafter_model -.-> NoopSeven\2ebefore_model;
|
|
310
310
|
NoopSeven\2eafter_model -.-> __end__;
|
|
311
311
|
NoopSeven\2eafter_model -.-> tools;
|
|
312
312
|
NoopSeven\2ebefore_model --> NoopEight\2ebefore_model;
|
|
313
313
|
__start__ --> NoopSeven\2ebefore_model;
|
|
314
|
-
|
|
314
|
+
model --> NoopEight\2eafter_model;
|
|
315
315
|
tools -.-> NoopSeven\2ebefore_model;
|
|
316
316
|
tools -.-> __end__;
|
|
317
317
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
---
|
|
330
330
|
graph TD;
|
|
331
331
|
__start__([<p>__start__</p>]):::first
|
|
332
|
-
|
|
332
|
+
model(model)
|
|
333
333
|
tools(tools)
|
|
334
334
|
NoopSeven\2ebefore_model(NoopSeven.before_model)
|
|
335
335
|
NoopSeven\2eafter_model(NoopSeven.after_model)
|
|
@@ -338,13 +338,13 @@
|
|
|
338
338
|
__end__([<p>__end__</p>]):::last
|
|
339
339
|
NoopEight\2eafter_model --> NoopSeven\2eafter_model;
|
|
340
340
|
NoopEight\2ebefore_model -.-> __end__;
|
|
341
|
-
NoopEight\2ebefore_model -.->
|
|
341
|
+
NoopEight\2ebefore_model -.-> model;
|
|
342
342
|
NoopSeven\2eafter_model -.-> NoopSeven\2ebefore_model;
|
|
343
343
|
NoopSeven\2eafter_model -.-> __end__;
|
|
344
344
|
NoopSeven\2eafter_model -.-> tools;
|
|
345
345
|
NoopSeven\2ebefore_model --> NoopEight\2ebefore_model;
|
|
346
346
|
__start__ --> NoopSeven\2ebefore_model;
|
|
347
|
-
|
|
347
|
+
model --> NoopEight\2eafter_model;
|
|
348
348
|
tools -.-> NoopSeven\2ebefore_model;
|
|
349
349
|
tools -.-> __end__;
|
|
350
350
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
---
|
|
363
363
|
graph TD;
|
|
364
364
|
__start__([<p>__start__</p>]):::first
|
|
365
|
-
|
|
365
|
+
model(model)
|
|
366
366
|
tools(tools)
|
|
367
367
|
NoopSeven\2ebefore_model(NoopSeven.before_model)
|
|
368
368
|
NoopSeven\2eafter_model(NoopSeven.after_model)
|
|
@@ -371,13 +371,13 @@
|
|
|
371
371
|
__end__([<p>__end__</p>]):::last
|
|
372
372
|
NoopEight\2eafter_model --> NoopSeven\2eafter_model;
|
|
373
373
|
NoopEight\2ebefore_model -.-> __end__;
|
|
374
|
-
NoopEight\2ebefore_model -.->
|
|
374
|
+
NoopEight\2ebefore_model -.-> model;
|
|
375
375
|
NoopSeven\2eafter_model -.-> NoopSeven\2ebefore_model;
|
|
376
376
|
NoopSeven\2eafter_model -.-> __end__;
|
|
377
377
|
NoopSeven\2eafter_model -.-> tools;
|
|
378
378
|
NoopSeven\2ebefore_model --> NoopEight\2ebefore_model;
|
|
379
379
|
__start__ --> NoopSeven\2ebefore_model;
|
|
380
|
-
|
|
380
|
+
model --> NoopEight\2eafter_model;
|
|
381
381
|
tools -.-> NoopSeven\2ebefore_model;
|
|
382
382
|
tools -.-> __end__;
|
|
383
383
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
---
|
|
396
396
|
graph TD;
|
|
397
397
|
__start__([<p>__start__</p>]):::first
|
|
398
|
-
|
|
398
|
+
model(model)
|
|
399
399
|
tools(tools)
|
|
400
400
|
NoopSeven\2ebefore_model(NoopSeven.before_model)
|
|
401
401
|
NoopSeven\2eafter_model(NoopSeven.after_model)
|
|
@@ -404,13 +404,13 @@
|
|
|
404
404
|
__end__([<p>__end__</p>]):::last
|
|
405
405
|
NoopEight\2eafter_model --> NoopSeven\2eafter_model;
|
|
406
406
|
NoopEight\2ebefore_model -.-> __end__;
|
|
407
|
-
NoopEight\2ebefore_model -.->
|
|
407
|
+
NoopEight\2ebefore_model -.-> model;
|
|
408
408
|
NoopSeven\2eafter_model -.-> NoopSeven\2ebefore_model;
|
|
409
409
|
NoopSeven\2eafter_model -.-> __end__;
|
|
410
410
|
NoopSeven\2eafter_model -.-> tools;
|
|
411
411
|
NoopSeven\2ebefore_model --> NoopEight\2ebefore_model;
|
|
412
412
|
__start__ --> NoopSeven\2ebefore_model;
|
|
413
|
-
|
|
413
|
+
model --> NoopEight\2eafter_model;
|
|
414
414
|
tools -.-> NoopSeven\2ebefore_model;
|
|
415
415
|
tools -.-> __end__;
|
|
416
416
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
@@ -428,7 +428,7 @@
|
|
|
428
428
|
---
|
|
429
429
|
graph TD;
|
|
430
430
|
__start__([<p>__start__</p>]):::first
|
|
431
|
-
|
|
431
|
+
model(model)
|
|
432
432
|
tools(tools)
|
|
433
433
|
NoopSeven\2ebefore_model(NoopSeven.before_model)
|
|
434
434
|
NoopSeven\2eafter_model(NoopSeven.after_model)
|
|
@@ -437,13 +437,13 @@
|
|
|
437
437
|
__end__([<p>__end__</p>]):::last
|
|
438
438
|
NoopEight\2eafter_model --> NoopSeven\2eafter_model;
|
|
439
439
|
NoopEight\2ebefore_model -.-> __end__;
|
|
440
|
-
NoopEight\2ebefore_model -.->
|
|
440
|
+
NoopEight\2ebefore_model -.-> model;
|
|
441
441
|
NoopSeven\2eafter_model -.-> NoopSeven\2ebefore_model;
|
|
442
442
|
NoopSeven\2eafter_model -.-> __end__;
|
|
443
443
|
NoopSeven\2eafter_model -.-> tools;
|
|
444
444
|
NoopSeven\2ebefore_model --> NoopEight\2ebefore_model;
|
|
445
445
|
__start__ --> NoopSeven\2ebefore_model;
|
|
446
|
-
|
|
446
|
+
model --> NoopEight\2eafter_model;
|
|
447
447
|
tools -.-> NoopSeven\2ebefore_model;
|
|
448
448
|
tools -.-> __end__;
|
|
449
449
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
---
|
|
9
9
|
graph TD;
|
|
10
10
|
__start__([<p>__start__</p>]):::first
|
|
11
|
-
|
|
11
|
+
model(model)
|
|
12
12
|
async_before_with_jump\2ebefore_model(async_before_with_jump.before_model)
|
|
13
13
|
__end__([<p>__end__</p>]):::last
|
|
14
14
|
__start__ --> async_before_with_jump\2ebefore_model;
|
|
15
15
|
async_before_with_jump\2ebefore_model -.-> __end__;
|
|
16
|
-
async_before_with_jump\2ebefore_model -.->
|
|
17
|
-
|
|
16
|
+
async_before_with_jump\2ebefore_model -.-> model;
|
|
17
|
+
model --> __end__;
|
|
18
18
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
19
19
|
classDef first fill-opacity:0
|
|
20
20
|
classDef last fill:#bfb6fc
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
---
|
|
31
31
|
graph TD;
|
|
32
32
|
__start__([<p>__start__</p>]):::first
|
|
33
|
-
|
|
33
|
+
model(model)
|
|
34
34
|
async_after_with_jump\2eafter_model(async_after_with_jump.after_model)
|
|
35
35
|
__end__([<p>__end__</p>]):::last
|
|
36
|
-
__start__ -->
|
|
36
|
+
__start__ --> model;
|
|
37
37
|
async_after_with_jump\2eafter_model -.-> __end__;
|
|
38
|
-
async_after_with_jump\2eafter_model -.->
|
|
39
|
-
|
|
38
|
+
async_after_with_jump\2eafter_model -.-> model;
|
|
39
|
+
model --> async_after_with_jump\2eafter_model;
|
|
40
40
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
41
41
|
classDef first fill-opacity:0
|
|
42
42
|
classDef last fill:#bfb6fc
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
---
|
|
53
53
|
graph TD;
|
|
54
54
|
__start__([<p>__start__</p>]):::first
|
|
55
|
-
|
|
55
|
+
model(model)
|
|
56
56
|
async_before_early_exit\2ebefore_model(async_before_early_exit.before_model)
|
|
57
57
|
async_after_retry\2eafter_model(async_after_retry.after_model)
|
|
58
58
|
__end__([<p>__end__</p>]):::last
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
async_after_retry\2eafter_model -.-> __end__;
|
|
61
61
|
async_after_retry\2eafter_model -.-> async_before_early_exit\2ebefore_model;
|
|
62
62
|
async_before_early_exit\2ebefore_model -.-> __end__;
|
|
63
|
-
async_before_early_exit\2ebefore_model -.->
|
|
64
|
-
|
|
63
|
+
async_before_early_exit\2ebefore_model -.-> model;
|
|
64
|
+
model --> async_after_retry\2eafter_model;
|
|
65
65
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
66
66
|
classDef first fill-opacity:0
|
|
67
67
|
classDef last fill:#bfb6fc
|
|
@@ -77,16 +77,16 @@
|
|
|
77
77
|
---
|
|
78
78
|
graph TD;
|
|
79
79
|
__start__([<p>__start__</p>]):::first
|
|
80
|
-
|
|
80
|
+
model(model)
|
|
81
81
|
sync_before_with_jump\2ebefore_model(sync_before_with_jump.before_model)
|
|
82
82
|
async_after_with_jumps\2eafter_model(async_after_with_jumps.after_model)
|
|
83
83
|
__end__([<p>__end__</p>]):::last
|
|
84
84
|
__start__ --> sync_before_with_jump\2ebefore_model;
|
|
85
85
|
async_after_with_jumps\2eafter_model -.-> __end__;
|
|
86
86
|
async_after_with_jumps\2eafter_model -.-> sync_before_with_jump\2ebefore_model;
|
|
87
|
-
|
|
87
|
+
model --> async_after_with_jumps\2eafter_model;
|
|
88
88
|
sync_before_with_jump\2ebefore_model -.-> __end__;
|
|
89
|
-
sync_before_with_jump\2ebefore_model -.->
|
|
89
|
+
sync_before_with_jump\2ebefore_model -.-> model;
|
|
90
90
|
classDef default fill:#f2f0ff,line-height:1.2
|
|
91
91
|
classDef first fill-opacity:0
|
|
92
92
|
classDef last fill:#bfb6fc
|
|
@@ -1550,7 +1550,7 @@ wheels = [
|
|
|
1550
1550
|
|
|
1551
1551
|
[[package]]
|
|
1552
1552
|
name = "langchain"
|
|
1553
|
-
version = "1.0.
|
|
1553
|
+
version = "1.0.0a12"
|
|
1554
1554
|
source = { editable = "." }
|
|
1555
1555
|
dependencies = [
|
|
1556
1556
|
{ name = "langchain-core" },
|
|
@@ -1742,7 +1742,7 @@ wheels = [
|
|
|
1742
1742
|
|
|
1743
1743
|
[[package]]
|
|
1744
1744
|
name = "langchain-core"
|
|
1745
|
-
version = "1.0.
|
|
1745
|
+
version = "1.0.0a7"
|
|
1746
1746
|
source = { editable = "../core" }
|
|
1747
1747
|
dependencies = [
|
|
1748
1748
|
{ name = "jsonpatch" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain-1.0.0a11 → langchain-1.0.0a12}/tests/integration_tests/agents/test_response_format.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/specifications/responses.json
RENAMED
|
File without changes
|
{langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/specifications/return_direct.json
RENAMED
|
File without changes
|
{langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_context_editing_middleware.py
RENAMED
|
File without changes
|
|
File without changes
|
{langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_middleware_decorators.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain-1.0.0a11 → langchain-1.0.0a12}/tests/unit_tests/agents/test_return_direct_spec.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|