haystack-experimental 0.16.0__tar.gz → 0.18.0__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.16.0 → haystack_experimental-0.18.0}/PKG-INFO +25 -26
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/README.md +24 -24
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/agents/agent.py +135 -124
- haystack_experimental-0.18.0/haystack_experimental/components/agents/human_in_the_loop/__init__.py +22 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/agents/human_in_the_loop/breakpoint.py +1 -2
- haystack_experimental-0.18.0/haystack_experimental/components/agents/human_in_the_loop/strategies.py +128 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/dataclasses/breakpoints.py +3 -4
- haystack_experimental-0.18.0/haystack_experimental/memory_stores/__init__.py +7 -0
- haystack_experimental-0.18.0/haystack_experimental/memory_stores/mem0/__init__.py +16 -0
- haystack_experimental-0.18.0/haystack_experimental/memory_stores/mem0/memory_store.py +323 -0
- haystack_experimental-0.18.0/haystack_experimental/memory_stores/types/__init__.py +7 -0
- haystack_experimental-0.18.0/haystack_experimental/memory_stores/types/protocol.py +94 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/pyproject.toml +6 -3
- haystack_experimental-0.16.0/haystack_experimental/components/agents/human_in_the_loop/__init__.py +0 -35
- haystack_experimental-0.16.0/haystack_experimental/components/agents/human_in_the_loop/dataclasses.py +0 -72
- haystack_experimental-0.16.0/haystack_experimental/components/agents/human_in_the_loop/policies.py +0 -78
- haystack_experimental-0.16.0/haystack_experimental/components/agents/human_in_the_loop/strategies.py +0 -672
- haystack_experimental-0.16.0/haystack_experimental/components/agents/human_in_the_loop/types.py +0 -124
- haystack_experimental-0.16.0/haystack_experimental/components/agents/human_in_the_loop/user_interfaces.py +0 -209
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/.gitignore +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/LICENSE +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/LICENSE-MIT.txt +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/chat_message_stores/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/chat_message_stores/in_memory.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/chat_message_stores/types.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/agents/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/agents/human_in_the_loop/errors.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/embedders/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/embedders/types/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/embedders/types/protocol.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/generators/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/generators/chat/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/generators/chat/openai.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/preprocessors/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/preprocessors/md_header_level_inferrer.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/retrievers/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/retrievers/chat_message_retriever.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/retrievers/types/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/retrievers/types/protocol.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/summarizers/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/summarizers/llm_summarizer.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/writers/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/components/writers/chat_message_writer.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/core/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/core/pipeline/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/core/pipeline/breakpoint.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/dataclasses/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/utils/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/utils/hallucination_risk_calculator/__init__.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/utils/hallucination_risk_calculator/core_math.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/utils/hallucination_risk_calculator/dataclasses.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/haystack_experimental/utils/hallucination_risk_calculator/openai_planner.py +0 -0
- {haystack_experimental-0.16.0 → haystack_experimental-0.18.0}/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.
|
|
3
|
+
Version: 0.18.0
|
|
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
|
|
@@ -24,7 +24,6 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
24
24
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
25
25
|
Requires-Python: >=3.10
|
|
26
26
|
Requires-Dist: haystack-ai
|
|
27
|
-
Requires-Dist: rich
|
|
28
27
|
Description-Content-Type: text/markdown
|
|
29
28
|
|
|
30
29
|
[](https://pypi.org/project/haystack-experimental)
|
|
@@ -70,13 +69,14 @@ that includes it. Once it reaches the end of its lifespan, the experiment will b
|
|
|
70
69
|
|
|
71
70
|
### Active experiments
|
|
72
71
|
|
|
73
|
-
| Name
|
|
74
|
-
|
|
75
|
-
| [`OpenAIChatGenerator`][9]
|
|
76
|
-
| [`MarkdownHeaderLevelInferrer`][15]
|
|
77
|
-
| [`Agent`][17]; [
|
|
78
|
-
| [`LLMSummarizer`][24]
|
|
79
|
-
| [`InMemoryChatMessageStore`][1]; [`ChatMessageRetriever`][2]; [`ChatMessageWriter`][3]
|
|
72
|
+
| Name | Type | Expected End Date | Dependencies | Cookbook | Discussion |
|
|
73
|
+
|----------------------------------------------------------------------------------------|---------------------------------------|-------------------|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|
74
|
+
| [`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] |
|
|
75
|
+
| [`MarkdownHeaderLevelInferrer`][15] | Preprocessor | January 2025 | None | None | [Discuss][16] |
|
|
76
|
+
| [`Agent`][17]; [`BreakpointConfirmationStrategy`][20]; [`HITLBreakpointException`][22] | Human in the Loop via Breakpoints | December 2025 | None | None | [Discuss][23] |
|
|
77
|
+
| [`LLMSummarizer`][24] | Document Summarizer | January 2025 | None | None | [Discuss][25] |
|
|
78
|
+
| [`InMemoryChatMessageStore`][1]; [`ChatMessageRetriever`][2]; [`ChatMessageWriter`][3] | Chat Message Store, Retriever, Writer | February 2025 | 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
|
+
| [`Mem0MemoryStore`][26] | MemoryStore | April 2025 | mem0ai | None | -- |
|
|
80
80
|
|
|
81
81
|
[1]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/chat_message_stores/in_memory.py
|
|
82
82
|
[2]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/retrievers/chat_message_retriever.py
|
|
@@ -87,30 +87,29 @@ that includes it. Once it reaches the end of its lifespan, the experiment will b
|
|
|
87
87
|
[15]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/preprocessors/md_header_level_inferrer.py
|
|
88
88
|
[16]: https://github.com/deepset-ai/haystack-experimental/discussions/376
|
|
89
89
|
[17]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/agent.py
|
|
90
|
-
[18]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/policies.py
|
|
91
|
-
[19]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/user_interfaces.py
|
|
92
90
|
[20]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/strategies.py
|
|
93
|
-
[21]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/dataclasses.py
|
|
94
91
|
[22]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/errors.py
|
|
95
92
|
[23]: https://github.com/deepset-ai/haystack-experimental/discussions/381
|
|
96
93
|
[24]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/sumarizers/llm_summarizer.py
|
|
97
94
|
[25]: https://github.com/deepset-ai/haystack-experimental/discussions/382
|
|
95
|
+
[26]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/memory_stores/mem0/memory_store.py
|
|
98
96
|
|
|
99
97
|
### Adopted experiments
|
|
100
|
-
| Name | Type
|
|
101
|
-
|
|
102
|
-
| `ChatMessage` refactoring; `Tool` class; tool support in ChatGenerators; `ToolInvoker` | Tool Calling support
|
|
103
|
-
| `AsyncPipeline`; `Pipeline` bug fixes and refactoring | AsyncPipeline execution
|
|
104
|
-
| `LLMMetadataExtractor` | Metadata extraction with LLM
|
|
105
|
-
| `Auto-Merging Retriever` & `HierarchicalDocumentSplitter` | Document Splitting & Retrieval Technique
|
|
106
|
-
| `Agent` | Simplify Agent development
|
|
107
|
-
| `SuperComponent` | Simplify Pipeline development
|
|
108
|
-
| `Pipeline` | Pipeline breakpoints for debugging
|
|
109
|
-
| `ImageContent`; Image Converters; multimodal support in `OpenAIChatGenerator` and `AmazonBedrockChatGenerator`; `ChatPromptBuilder` refactoring; `SentenceTransformersDocumentImageEmbedder`; `LLMDocumentContentExtractor`; new `Routers` | Multimodality
|
|
110
|
-
| `QueryExpander` | Query Expansion Component
|
|
111
|
-
| `MultiQueryEmbeddingRetriever` | MultiQueryEmbeddingRetriever
|
|
112
|
-
| `MultiQueryTextRetriever` | MultiQueryTextRetriever
|
|
113
|
-
| `EmbeddingBasedDocumentSplitter`
|
|
98
|
+
| Name | Type | Final release |
|
|
99
|
+
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------|---------------|
|
|
100
|
+
| `ChatMessage` refactoring; `Tool` class; tool support in ChatGenerators; `ToolInvoker` | Tool Calling support | 0.4.0 |
|
|
101
|
+
| `AsyncPipeline`; `Pipeline` bug fixes and refactoring | AsyncPipeline execution | 0.7.0 |
|
|
102
|
+
| `LLMMetadataExtractor` | Metadata extraction with LLM | 0.7.0 |
|
|
103
|
+
| `Auto-Merging Retriever` & `HierarchicalDocumentSplitter` | Document Splitting & Retrieval Technique | 0.8.0 |
|
|
104
|
+
| `Agent` | Simplify Agent development | 0.8.0 |
|
|
105
|
+
| `SuperComponent` | Simplify Pipeline development | 0.8.0 |
|
|
106
|
+
| `Pipeline` | Pipeline breakpoints for debugging | 0.12.0 |
|
|
107
|
+
| `ImageContent`; Image Converters; multimodal support in `OpenAIChatGenerator` and `AmazonBedrockChatGenerator`; `ChatPromptBuilder` refactoring; `SentenceTransformersDocumentImageEmbedder`; `LLMDocumentContentExtractor`; new `Routers` | Multimodality | 0.12.0 |
|
|
108
|
+
| `QueryExpander` | Query Expansion Component | 0.14.3 |
|
|
109
|
+
| `MultiQueryEmbeddingRetriever` | MultiQueryEmbeddingRetriever | 0.14.3 |
|
|
110
|
+
| `MultiQueryTextRetriever` | MultiQueryTextRetriever | 0.14.3 |
|
|
111
|
+
| `EmbeddingBasedDocumentSplitter` | Document Splitting | 0.15.2 |
|
|
112
|
+
| `Confirmation Policies`; `ConfirmationUIs`; `BlockingConfirmationStrategy`; `ConfirmationUIResult`; `ToolExecutionDecision` | Human in the Loop | 0.16.0 |
|
|
114
113
|
|
|
115
114
|
### Discontinued experiments
|
|
116
115
|
|
|
@@ -41,13 +41,14 @@ 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
|
|
45
|
-
|
|
46
|
-
| [`OpenAIChatGenerator`][9]
|
|
47
|
-
| [`MarkdownHeaderLevelInferrer`][15]
|
|
48
|
-
| [`Agent`][17]; [
|
|
49
|
-
| [`LLMSummarizer`][24]
|
|
50
|
-
| [`InMemoryChatMessageStore`][1]; [`ChatMessageRetriever`][2]; [`ChatMessageWriter`][3]
|
|
44
|
+
| Name | Type | Expected End Date | Dependencies | Cookbook | Discussion |
|
|
45
|
+
|----------------------------------------------------------------------------------------|---------------------------------------|-------------------|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|
46
|
+
| [`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] |
|
|
47
|
+
| [`MarkdownHeaderLevelInferrer`][15] | Preprocessor | January 2025 | None | None | [Discuss][16] |
|
|
48
|
+
| [`Agent`][17]; [`BreakpointConfirmationStrategy`][20]; [`HITLBreakpointException`][22] | Human in the Loop via Breakpoints | December 2025 | None | None | [Discuss][23] |
|
|
49
|
+
| [`LLMSummarizer`][24] | Document Summarizer | January 2025 | None | None | [Discuss][25] |
|
|
50
|
+
| [`InMemoryChatMessageStore`][1]; [`ChatMessageRetriever`][2]; [`ChatMessageWriter`][3] | Chat Message Store, Retriever, Writer | February 2025 | 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] |
|
|
51
|
+
| [`Mem0MemoryStore`][26] | MemoryStore | April 2025 | mem0ai | None | -- |
|
|
51
52
|
|
|
52
53
|
[1]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/chat_message_stores/in_memory.py
|
|
53
54
|
[2]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/retrievers/chat_message_retriever.py
|
|
@@ -58,30 +59,29 @@ that includes it. Once it reaches the end of its lifespan, the experiment will b
|
|
|
58
59
|
[15]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/preprocessors/md_header_level_inferrer.py
|
|
59
60
|
[16]: https://github.com/deepset-ai/haystack-experimental/discussions/376
|
|
60
61
|
[17]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/agent.py
|
|
61
|
-
[18]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/policies.py
|
|
62
|
-
[19]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/user_interfaces.py
|
|
63
62
|
[20]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/strategies.py
|
|
64
|
-
[21]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/dataclasses.py
|
|
65
63
|
[22]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/agents/human_in_the_loop/errors.py
|
|
66
64
|
[23]: https://github.com/deepset-ai/haystack-experimental/discussions/381
|
|
67
65
|
[24]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/components/sumarizers/llm_summarizer.py
|
|
68
66
|
[25]: https://github.com/deepset-ai/haystack-experimental/discussions/382
|
|
67
|
+
[26]: https://github.com/deepset-ai/haystack-experimental/blob/main/haystack_experimental/memory_stores/mem0/memory_store.py
|
|
69
68
|
|
|
70
69
|
### Adopted experiments
|
|
71
|
-
| Name | Type
|
|
72
|
-
|
|
73
|
-
| `ChatMessage` refactoring; `Tool` class; tool support in ChatGenerators; `ToolInvoker` | Tool Calling support
|
|
74
|
-
| `AsyncPipeline`; `Pipeline` bug fixes and refactoring | AsyncPipeline execution
|
|
75
|
-
| `LLMMetadataExtractor` | Metadata extraction with LLM
|
|
76
|
-
| `Auto-Merging Retriever` & `HierarchicalDocumentSplitter` | Document Splitting & Retrieval Technique
|
|
77
|
-
| `Agent` | Simplify Agent development
|
|
78
|
-
| `SuperComponent` | Simplify Pipeline development
|
|
79
|
-
| `Pipeline` | Pipeline breakpoints for debugging
|
|
80
|
-
| `ImageContent`; Image Converters; multimodal support in `OpenAIChatGenerator` and `AmazonBedrockChatGenerator`; `ChatPromptBuilder` refactoring; `SentenceTransformersDocumentImageEmbedder`; `LLMDocumentContentExtractor`; new `Routers` | Multimodality
|
|
81
|
-
| `QueryExpander` | Query Expansion Component
|
|
82
|
-
| `MultiQueryEmbeddingRetriever` | MultiQueryEmbeddingRetriever
|
|
83
|
-
| `MultiQueryTextRetriever` | MultiQueryTextRetriever
|
|
84
|
-
| `EmbeddingBasedDocumentSplitter`
|
|
70
|
+
| Name | Type | Final release |
|
|
71
|
+
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------|---------------|
|
|
72
|
+
| `ChatMessage` refactoring; `Tool` class; tool support in ChatGenerators; `ToolInvoker` | Tool Calling support | 0.4.0 |
|
|
73
|
+
| `AsyncPipeline`; `Pipeline` bug fixes and refactoring | AsyncPipeline execution | 0.7.0 |
|
|
74
|
+
| `LLMMetadataExtractor` | Metadata extraction with LLM | 0.7.0 |
|
|
75
|
+
| `Auto-Merging Retriever` & `HierarchicalDocumentSplitter` | Document Splitting & Retrieval Technique | 0.8.0 |
|
|
76
|
+
| `Agent` | Simplify Agent development | 0.8.0 |
|
|
77
|
+
| `SuperComponent` | Simplify Pipeline development | 0.8.0 |
|
|
78
|
+
| `Pipeline` | Pipeline breakpoints for debugging | 0.12.0 |
|
|
79
|
+
| `ImageContent`; Image Converters; multimodal support in `OpenAIChatGenerator` and `AmazonBedrockChatGenerator`; `ChatPromptBuilder` refactoring; `SentenceTransformersDocumentImageEmbedder`; `LLMDocumentContentExtractor`; new `Routers` | Multimodality | 0.12.0 |
|
|
80
|
+
| `QueryExpander` | Query Expansion Component | 0.14.3 |
|
|
81
|
+
| `MultiQueryEmbeddingRetriever` | MultiQueryEmbeddingRetriever | 0.14.3 |
|
|
82
|
+
| `MultiQueryTextRetriever` | MultiQueryTextRetriever | 0.14.3 |
|
|
83
|
+
| `EmbeddingBasedDocumentSplitter` | Document Splitting | 0.15.2 |
|
|
84
|
+
| `Confirmation Policies`; `ConfirmationUIs`; `BlockingConfirmationStrategy`; `ConfirmationUIResult`; `ToolExecutionDecision` | Human in the Loop | 0.16.0 |
|
|
85
85
|
|
|
86
86
|
### Discontinued experiments
|
|
87
87
|
|