haystack-experimental 0.15.0__tar.gz → 0.15.2__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.
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/PKG-INFO +2 -1
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/human_in_the_loop/breakpoint.py +3 -1
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/pyproject.toml +1 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/.gitignore +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/LICENSE +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/LICENSE-MIT.txt +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/README.md +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/chat_message_stores/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/chat_message_stores/in_memory.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/chat_message_stores/types.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/agent.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/human_in_the_loop/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/human_in_the_loop/dataclasses.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/human_in_the_loop/errors.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/human_in_the_loop/policies.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/human_in_the_loop/strategies.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/human_in_the_loop/types.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/agents/human_in_the_loop/user_interfaces.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/embedders/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/embedders/types/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/embedders/types/protocol.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/generators/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/generators/chat/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/generators/chat/openai.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/preprocessors/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/preprocessors/embedding_based_document_splitter.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/preprocessors/md_header_level_inferrer.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/retrievers/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/retrievers/chat_message_retriever.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/retrievers/types/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/retrievers/types/protocol.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/summarizers/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/summarizers/llm_summarizer.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/writers/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/components/writers/chat_message_writer.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/core/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/core/pipeline/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/core/pipeline/breakpoint.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/dataclasses/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/dataclasses/breakpoints.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/utils/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/utils/hallucination_risk_calculator/__init__.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/utils/hallucination_risk_calculator/core_math.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/utils/hallucination_risk_calculator/dataclasses.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/utils/hallucination_risk_calculator/openai_planner.py +0 -0
- {haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/utils/hallucination_risk_calculator/skeletonization.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: haystack-experimental
|
|
3
|
-
Version: 0.15.
|
|
3
|
+
Version: 0.15.2
|
|
4
4
|
Summary: Experimental components and features for the Haystack LLM framework.
|
|
5
5
|
Project-URL: CI: GitHub, https://github.com/deepset-ai/haystack-experimental/actions
|
|
6
6
|
Project-URL: GitHub: issues, https://github.com/deepset-ai/haystack-experimental/issues
|
|
@@ -25,6 +25,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
25
25
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
26
26
|
Requires-Python: >=3.9
|
|
27
27
|
Requires-Dist: haystack-ai
|
|
28
|
+
Requires-Dist: lazy-imports<1.2.0
|
|
28
29
|
Requires-Dist: rich
|
|
29
30
|
Description-Content-Type: text/markdown
|
|
30
31
|
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
#
|
|
3
3
|
# SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
|
|
5
|
+
from copy import deepcopy
|
|
6
|
+
|
|
5
7
|
from haystack.dataclasses.breakpoints import AgentSnapshot, ToolBreakpoint
|
|
6
8
|
from haystack.utils import _deserialize_value_with_schema
|
|
7
9
|
|
|
@@ -31,7 +33,7 @@ def get_tool_calls_and_descriptions_from_snapshot(
|
|
|
31
33
|
tool_caused_break_point = break_point.tool_name
|
|
32
34
|
|
|
33
35
|
# Deserialize the tool invoker inputs from the snapshot
|
|
34
|
-
tool_invoker_inputs = _deserialize_value_with_schema(agent_snapshot.component_inputs["tool_invoker"])
|
|
36
|
+
tool_invoker_inputs = _deserialize_value_with_schema(deepcopy(agent_snapshot.component_inputs["tool_invoker"]))
|
|
35
37
|
tool_call_messages = tool_invoker_inputs["messages"]
|
|
36
38
|
state = tool_invoker_inputs["state"]
|
|
37
39
|
tool_name_to_tool = {t.name: t for t in tool_invoker_inputs["tools"]}
|
|
@@ -29,6 +29,7 @@ classifiers = [
|
|
|
29
29
|
dependencies = [
|
|
30
30
|
"haystack-ai",
|
|
31
31
|
"rich", # For pretty printing in the console used by human-in-the-loop utilities
|
|
32
|
+
"lazy-imports<1.2.0" # 1.2.0 requires Python 3.10+, see https://github.com/bachorp/lazy-imports/releases/tag/1.2.0
|
|
32
33
|
]
|
|
33
34
|
|
|
34
35
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/__init__.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_experimental-0.15.0 → haystack_experimental-0.15.2}/haystack_experimental/core/__init__.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
|