haystack-experimental 0.13.0__tar.gz → 0.14.1__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.
Files changed (56) hide show
  1. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/PKG-INFO +29 -14
  2. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/README.md +27 -13
  3. haystack_experimental-0.14.1/haystack_experimental/components/agents/__init__.py +16 -0
  4. haystack_experimental-0.14.1/haystack_experimental/components/agents/agent.py +633 -0
  5. haystack_experimental-0.14.1/haystack_experimental/components/agents/human_in_the_loop/__init__.py +35 -0
  6. haystack_experimental-0.14.1/haystack_experimental/components/agents/human_in_the_loop/breakpoint.py +63 -0
  7. haystack_experimental-0.14.1/haystack_experimental/components/agents/human_in_the_loop/dataclasses.py +72 -0
  8. haystack_experimental-0.14.1/haystack_experimental/components/agents/human_in_the_loop/errors.py +28 -0
  9. haystack_experimental-0.14.1/haystack_experimental/components/agents/human_in_the_loop/policies.py +78 -0
  10. haystack_experimental-0.14.1/haystack_experimental/components/agents/human_in_the_loop/strategies.py +455 -0
  11. haystack_experimental-0.14.1/haystack_experimental/components/agents/human_in_the_loop/types.py +89 -0
  12. haystack_experimental-0.14.1/haystack_experimental/components/agents/human_in_the_loop/user_interfaces.py +209 -0
  13. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/generators/chat/openai.py +8 -10
  14. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/preprocessors/embedding_based_document_splitter.py +18 -6
  15. haystack_experimental-0.14.1/haystack_experimental/components/preprocessors/md_header_level_inferrer.py +146 -0
  16. haystack_experimental-0.14.1/haystack_experimental/components/summarizers/__init__.py +7 -0
  17. haystack_experimental-0.14.1/haystack_experimental/components/summarizers/llm_summarizer.py +317 -0
  18. haystack_experimental-0.14.1/haystack_experimental/core/pipeline/breakpoint.py +119 -0
  19. haystack_experimental-0.14.1/haystack_experimental/dataclasses/__init__.py +3 -0
  20. haystack_experimental-0.14.1/haystack_experimental/dataclasses/breakpoints.py +53 -0
  21. haystack_experimental-0.14.1/haystack_experimental/super_components/__init__.py +3 -0
  22. haystack_experimental-0.14.1/haystack_experimental/utils/__init__.py +3 -0
  23. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/pyproject.toml +5 -0
  24. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/.gitignore +0 -0
  25. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/LICENSE +0 -0
  26. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/LICENSE-MIT.txt +0 -0
  27. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/__init__.py +0 -0
  28. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/chat_message_stores/__init__.py +0 -0
  29. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/chat_message_stores/in_memory.py +0 -0
  30. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/chat_message_stores/types.py +0 -0
  31. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/__init__.py +0 -0
  32. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/embedders/__init__.py +0 -0
  33. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/embedders/types/__init__.py +0 -0
  34. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/embedders/types/protocol.py +0 -0
  35. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/generators/__init__.py +0 -0
  36. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/generators/chat/__init__.py +0 -0
  37. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/preprocessors/__init__.py +0 -0
  38. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/query/__init__.py +0 -0
  39. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/query/query_expander.py +0 -0
  40. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/retrievers/__init__.py +0 -0
  41. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/retrievers/chat_message_retriever.py +0 -0
  42. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/retrievers/multi_query_embedding_retriever.py +0 -0
  43. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/retrievers/multi_query_text_retriever.py +0 -0
  44. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/retrievers/types/__init__.py +0 -0
  45. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/retrievers/types/protocol.py +0 -0
  46. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/writers/__init__.py +0 -0
  47. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/components/writers/chat_message_writer.py +0 -0
  48. {haystack_experimental-0.13.0/haystack_experimental/super_components → haystack_experimental-0.14.1/haystack_experimental/core}/__init__.py +0 -0
  49. {haystack_experimental-0.13.0/haystack_experimental/utils → haystack_experimental-0.14.1/haystack_experimental/core/pipeline}/__init__.py +0 -0
  50. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/super_components/indexers/__init__.py +0 -0
  51. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/super_components/indexers/sentence_transformers_document_indexer.py +0 -0
  52. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/utils/hallucination_risk_calculator/__init__.py +0 -0
  53. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/utils/hallucination_risk_calculator/core_math.py +0 -0
  54. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/utils/hallucination_risk_calculator/dataclasses.py +0 -0
  55. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/haystack_experimental/utils/hallucination_risk_calculator/openai_planner.py +0 -0
  56. {haystack_experimental-0.13.0 → haystack_experimental-0.14.1}/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.13.0
3
+ Version: 0.14.1
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: rich
28
29
  Description-Content-Type: text/markdown
29
30
 
30
31
  [![PyPI - Version](https://img.shields.io/pypi/v/haystack-experimental.svg)](https://pypi.org/project/haystack-experimental)
@@ -70,16 +71,19 @@ that includes it. Once it reaches the end of its lifespan, the experiment will b
70
71
 
71
72
  ### Active experiments
72
73
 
73
- | Name | Type | Expected End Date | Dependencies | Cookbook | Discussion |
74
- |---------------------------------------|--------------------------------|-------------------|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
75
- | [`InMemoryChatMessageStore`][1] | Memory Store | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
76
- | [`ChatMessageRetriever`][2] | Memory Component | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
77
- | [`ChatMessageWriter`][3] | Memory Component | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
78
- | [`QueryExpander`][5] | Query Expansion Component | October 2025 | None | None | [Discuss][6] |
79
- | [`EmbeddingBasedDocumentSplitter`][8] | EmbeddingBasedDocumentSplitter | August 2025 | None | None | [Discuss][7] |
80
- | [`MultiQueryEmbeddingRetriever`][9] | MultiQueryEmbeddingRetriever | November 2025 | None | None | [Discuss][11] |
81
- | [`MultiQueryTextRetriever`][10] | MultiQueryTextRetriever | November 2025 | None | None | [Discuss][12] |
82
- | [`OpenAIChatGenerator`][9] | Chat Generator Component | November 2025 | None | None | [Discuss][10] |
74
+ | Name | Type | Expected End Date | Dependencies | Cookbook | Discussion |
75
+ |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|-------------------|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
76
+ | [`InMemoryChatMessageStore`][1] | Memory Store | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
77
+ | [`ChatMessageRetriever`][2] | Memory Component | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
78
+ | [`ChatMessageWriter`][3] | Memory Component | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
79
+ | [`QueryExpander`][5] | Query Expansion Component | October 2025 | None | None | [Discuss][6] |
80
+ | [`EmbeddingBasedDocumentSplitter`][8] | EmbeddingBasedDocumentSplitter | August 2025 | None | None | [Discuss][7] |
81
+ | [`MultiQueryEmbeddingRetriever`][13] | MultiQueryEmbeddingRetriever | November 2025 | None | None | [Discuss][11] |
82
+ | [`MultiQueryTextRetriever`][14] | MultiQueryTextRetriever | November 2025 | None | None | [Discuss][12] |
83
+ | [`OpenAIChatGenerator`][9] | Chat Generator Component | November 2025 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/hallucination_score_calculator.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][10] |
84
+ | [`MarkdownHeaderLevelInferrer`][15] | Preprocessor | January 2025 | None | None | [Discuss][16] |
85
+ | [`Agent`][17]; [Confirmation Policies][18]; [ConfirmationUIs][19]; [ConfirmationStrategies][20]; [`ConfirmationUIResult` and `ToolExecutionDecision`][21] [HITLBreakpointException][22] | Human in the Loop | December 2025 | rich | None | [Discuss][23] |
86
+ | [`LLMSummarizer`][24] | Document Summarizer | January 2025 | None | None | [Discuss][25] |
83
87
 
84
88
  [1]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/chat_message_stores/in_memory.py
85
89
  [2]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/retrievers/chat_message_retriever.py
@@ -90,11 +94,22 @@ that includes it. Once it reaches the end of its lifespan, the experiment will b
90
94
  [7]: https://github.com/deepset-ai/haystack-experimental/discussions/356
91
95
  [8]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/preprocessors/embedding_based_document_splitter.py
92
96
  [9]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/generators/chat/openai.py
93
- [10]: https://github.com/deepset-ai/haystack-experimental/discussions/XXX
94
- [11]: https://github.com/deepset-ai/haystack-experimental/discussions/<>
95
- [12]: https://github.com/deepset-ai/haystack-experimental/discussions/<>
97
+ [10]: https://github.com/deepset-ai/haystack-experimental/discussions/361
98
+ [11]: https://github.com/deepset-ai/haystack-experimental/discussions/363
99
+ [12]: https://github.com/deepset-ai/haystack-experimental/discussions/364
96
100
  [13]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/retrievers/multi_query_embedding_retriever.py
97
101
  [14]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/retrievers/multi_query_text_retriever.py
102
+ [15]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/preprocessors/md_header_level_inferrer.py
103
+ [16]: https://github.com/deepset-ai/haystack-experimental/discussions/376
104
+ [17]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/agent.py
105
+ [18]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/policies.py
106
+ [19]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/user_interfaces.py
107
+ [20]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/strategies.py
108
+ [21]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/dataclasses.py
109
+ [22]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/errors.py
110
+ [23]: https://github.com/deepset-ai/haystack-experimental/discussions/381
111
+ [24]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/sumarizers/llm_summarizer.py
112
+ [25]: https://github.com/deepset-ai/haystack-experimental/discussions/382
98
113
 
99
114
  ### Adopted experiments
100
115
  | Name | Type | Final release |
@@ -41,16 +41,19 @@ that includes it. Once it reaches the end of its lifespan, the experiment will b
41
41
 
42
42
  ### Active experiments
43
43
 
44
- | Name | Type | Expected End Date | Dependencies | Cookbook | Discussion |
45
- |---------------------------------------|--------------------------------|-------------------|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
46
- | [`InMemoryChatMessageStore`][1] | Memory Store | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
47
- | [`ChatMessageRetriever`][2] | Memory Component | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
48
- | [`ChatMessageWriter`][3] | Memory Component | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
49
- | [`QueryExpander`][5] | Query Expansion Component | October 2025 | None | None | [Discuss][6] |
50
- | [`EmbeddingBasedDocumentSplitter`][8] | EmbeddingBasedDocumentSplitter | August 2025 | None | None | [Discuss][7] |
51
- | [`MultiQueryEmbeddingRetriever`][9] | MultiQueryEmbeddingRetriever | November 2025 | None | None | [Discuss][11] |
52
- | [`MultiQueryTextRetriever`][10] | MultiQueryTextRetriever | November 2025 | None | None | [Discuss][12] |
53
- | [`OpenAIChatGenerator`][9] | Chat Generator Component | November 2025 | None | None | [Discuss][10] |
44
+ | Name | Type | Expected End Date | Dependencies | Cookbook | Discussion |
45
+ |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|-------------------|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
46
+ | [`InMemoryChatMessageStore`][1] | Memory Store | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
47
+ | [`ChatMessageRetriever`][2] | Memory Component | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
48
+ | [`ChatMessageWriter`][3] | Memory Component | December 2024 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/conversational_rag_using_memory.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][4] |
49
+ | [`QueryExpander`][5] | Query Expansion Component | October 2025 | None | None | [Discuss][6] |
50
+ | [`EmbeddingBasedDocumentSplitter`][8] | EmbeddingBasedDocumentSplitter | August 2025 | None | None | [Discuss][7] |
51
+ | [`MultiQueryEmbeddingRetriever`][13] | MultiQueryEmbeddingRetriever | November 2025 | None | None | [Discuss][11] |
52
+ | [`MultiQueryTextRetriever`][14] | MultiQueryTextRetriever | November 2025 | None | None | [Discuss][12] |
53
+ | [`OpenAIChatGenerator`][9] | Chat Generator Component | November 2025 | None | <a href="https://colab.research.google.com/github/deepset-ai/haystack-cookbook/blob/main/notebooks/hallucination_score_calculator.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | [Discuss][10] |
54
+ | [`MarkdownHeaderLevelInferrer`][15] | Preprocessor | January 2025 | None | None | [Discuss][16] |
55
+ | [`Agent`][17]; [Confirmation Policies][18]; [ConfirmationUIs][19]; [ConfirmationStrategies][20]; [`ConfirmationUIResult` and `ToolExecutionDecision`][21] [HITLBreakpointException][22] | Human in the Loop | December 2025 | rich | None | [Discuss][23] |
56
+ | [`LLMSummarizer`][24] | Document Summarizer | January 2025 | None | None | [Discuss][25] |
54
57
 
55
58
  [1]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/chat_message_stores/in_memory.py
56
59
  [2]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/retrievers/chat_message_retriever.py
@@ -61,11 +64,22 @@ that includes it. Once it reaches the end of its lifespan, the experiment will b
61
64
  [7]: https://github.com/deepset-ai/haystack-experimental/discussions/356
62
65
  [8]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/preprocessors/embedding_based_document_splitter.py
63
66
  [9]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/generators/chat/openai.py
64
- [10]: https://github.com/deepset-ai/haystack-experimental/discussions/XXX
65
- [11]: https://github.com/deepset-ai/haystack-experimental/discussions/<>
66
- [12]: https://github.com/deepset-ai/haystack-experimental/discussions/<>
67
+ [10]: https://github.com/deepset-ai/haystack-experimental/discussions/361
68
+ [11]: https://github.com/deepset-ai/haystack-experimental/discussions/363
69
+ [12]: https://github.com/deepset-ai/haystack-experimental/discussions/364
67
70
  [13]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/retrievers/multi_query_embedding_retriever.py
68
71
  [14]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/retrievers/multi_query_text_retriever.py
72
+ [15]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/preprocessors/md_header_level_inferrer.py
73
+ [16]: https://github.com/deepset-ai/haystack-experimental/discussions/376
74
+ [17]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/agent.py
75
+ [18]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/policies.py
76
+ [19]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/user_interfaces.py
77
+ [20]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/strategies.py
78
+ [21]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/dataclasses.py
79
+ [22]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/errors.py
80
+ [23]: https://github.com/deepset-ai/haystack-experimental/discussions/381
81
+ [24]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/sumarizers/llm_summarizer.py
82
+ [25]: https://github.com/deepset-ai/haystack-experimental/discussions/382
69
83
 
70
84
  ### Adopted experiments
71
85
  | Name | Type | Final release |
@@ -0,0 +1,16 @@
1
+ # SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
5
+ import sys
6
+ from typing import TYPE_CHECKING
7
+
8
+ from lazy_imports import LazyImporter
9
+
10
+ _import_structure = {"agent": ["Agent"]}
11
+
12
+ if TYPE_CHECKING:
13
+ from .agent import Agent as Agent
14
+
15
+ else:
16
+ sys.modules[__name__] = LazyImporter(name=__name__, module_file=__file__, import_structure=_import_structure)