transformers-haystack 0.1.0__py3-none-any.whl

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 (24) hide show
  1. haystack_integrations/components/classifiers/py.typed +0 -0
  2. haystack_integrations/components/classifiers/transformers/__init__.py +6 -0
  3. haystack_integrations/components/classifiers/transformers/zero_shot_document_classifier.py +247 -0
  4. haystack_integrations/components/common/py.typed +0 -0
  5. haystack_integrations/components/common/transformers/__init__.py +3 -0
  6. haystack_integrations/components/common/transformers/utils.py +234 -0
  7. haystack_integrations/components/extractors/py.typed +0 -0
  8. haystack_integrations/components/extractors/transformers/__init__.py +6 -0
  9. haystack_integrations/components/extractors/transformers/named_entity_extractor.py +262 -0
  10. haystack_integrations/components/generators/py.typed +0 -0
  11. haystack_integrations/components/generators/transformers/__init__.py +6 -0
  12. haystack_integrations/components/generators/transformers/chat/__init__.py +3 -0
  13. haystack_integrations/components/generators/transformers/chat/chat_generator.py +666 -0
  14. haystack_integrations/components/readers/py.typed +0 -0
  15. haystack_integrations/components/readers/transformers/__init__.py +6 -0
  16. haystack_integrations/components/readers/transformers/extractive_reader.py +662 -0
  17. haystack_integrations/components/routers/py.typed +0 -0
  18. haystack_integrations/components/routers/transformers/__init__.py +7 -0
  19. haystack_integrations/components/routers/transformers/text_router.py +196 -0
  20. haystack_integrations/components/routers/transformers/zero_shot_text_router.py +205 -0
  21. transformers_haystack-0.1.0.dist-info/METADATA +38 -0
  22. transformers_haystack-0.1.0.dist-info/RECORD +24 -0
  23. transformers_haystack-0.1.0.dist-info/WHEEL +4 -0
  24. transformers_haystack-0.1.0.dist-info/licenses/LICENSE.txt +201 -0
@@ -0,0 +1,196 @@
1
+ # SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
5
+ from typing import Any
6
+
7
+ from haystack import component, default_from_dict, default_to_dict
8
+ from haystack.utils import ComponentDevice, Secret
9
+ from haystack.utils.hf import deserialize_hf_model_kwargs, serialize_hf_model_kwargs
10
+
11
+ from haystack_integrations.components.common.transformers.utils import _resolve_hf_pipeline_kwargs
12
+ from transformers import AutoConfig, Pipeline, pipeline
13
+
14
+
15
+ @component
16
+ class TransformersTextRouter:
17
+ """
18
+ Routes the text strings to different connections based on a category label.
19
+
20
+ The labels are specific to each model and can be found it its description on Hugging Face.
21
+
22
+ ### Usage example
23
+ ```python
24
+ from haystack.components.builders import PromptBuilder
25
+ from haystack.components.generators import HuggingFaceLocalGenerator
26
+ from haystack.core.pipeline import Pipeline
27
+
28
+ from haystack_integrations.components.routers.transformers import TransformersTextRouter
29
+
30
+ p = Pipeline()
31
+ p.add_component(
32
+ instance=TransformersTextRouter(model="papluca/xlm-roberta-base-language-detection"),
33
+ name="text_router"
34
+ )
35
+ p.add_component(
36
+ instance=PromptBuilder(template="Answer the question: {{query}}\\nAnswer:"),
37
+ name="english_prompt_builder"
38
+ )
39
+ p.add_component(
40
+ instance=PromptBuilder(template="Beantworte die Frage: {{query}}\\nAntwort:"),
41
+ name="german_prompt_builder"
42
+ )
43
+
44
+ p.add_component(
45
+ instance=HuggingFaceLocalGenerator(model="DiscoResearch/Llama3-DiscoLeo-Instruct-8B-v0.1"),
46
+ name="german_llm"
47
+ )
48
+ p.add_component(
49
+ instance=HuggingFaceLocalGenerator(model="microsoft/Phi-3-mini-4k-instruct"),
50
+ name="english_llm"
51
+ )
52
+
53
+ p.connect("text_router.en", "english_prompt_builder.query")
54
+ p.connect("text_router.de", "german_prompt_builder.query")
55
+ p.connect("english_prompt_builder.prompt", "english_llm.prompt")
56
+ p.connect("german_prompt_builder.prompt", "german_llm.prompt")
57
+
58
+ # English Example
59
+ print(p.run({"text_router": {"text": "What is the capital of Germany?"}}))
60
+
61
+ # German Example
62
+ print(p.run({"text_router": {"text": "Was ist die Hauptstadt von Deutschland?"}}))
63
+ ```
64
+ """
65
+
66
+ def __init__(
67
+ self,
68
+ model: str,
69
+ labels: list[str] | None = None,
70
+ device: ComponentDevice | None = None,
71
+ token: Secret | None = Secret.from_env_var(["HF_API_TOKEN", "HF_TOKEN"], strict=False),
72
+ huggingface_pipeline_kwargs: dict[str, Any] | None = None,
73
+ ) -> None:
74
+ """
75
+ Initializes the TransformersTextRouter component.
76
+
77
+ :param model: The name or path of a Hugging Face model for text classification.
78
+ :param labels: The list of labels. If not provided, the component fetches the labels
79
+ from the model configuration file hosted on the Hugging Face Hub using
80
+ `transformers.AutoConfig.from_pretrained`.
81
+ :param device: The device for loading the model. If `None`, automatically selects the default device.
82
+ If a device or device map is specified in `huggingface_pipeline_kwargs`, it overrides this parameter.
83
+ :param token: The API token used to download private models from Hugging Face.
84
+ If `True`, uses either `HF_API_TOKEN` or `HF_TOKEN` environment variables.
85
+ To generate these tokens, run `transformers-cli login`.
86
+ :param huggingface_pipeline_kwargs: A dictionary of keyword arguments for initializing the Hugging Face
87
+ text classification pipeline.
88
+ """
89
+ self.token = token
90
+
91
+ huggingface_pipeline_kwargs = _resolve_hf_pipeline_kwargs(
92
+ huggingface_pipeline_kwargs=huggingface_pipeline_kwargs or {},
93
+ model=model,
94
+ task="text-classification",
95
+ supported_tasks=["text-classification"],
96
+ device=device,
97
+ token=token,
98
+ )
99
+ self.huggingface_pipeline_kwargs = huggingface_pipeline_kwargs
100
+
101
+ if labels is None:
102
+ config = AutoConfig.from_pretrained(
103
+ huggingface_pipeline_kwargs["model"], token=huggingface_pipeline_kwargs["token"]
104
+ )
105
+ self.labels = list(config.label2id.keys())
106
+ else:
107
+ self.labels = labels
108
+ component.set_output_types(self, **dict.fromkeys(self.labels, str))
109
+
110
+ self.pipeline: Pipeline | None = None
111
+
112
+ def _get_telemetry_data(self) -> dict[str, Any]:
113
+ """
114
+ Data that is sent to Posthog for usage analytics.
115
+ """
116
+ if isinstance(self.huggingface_pipeline_kwargs["model"], str):
117
+ return {"model": self.huggingface_pipeline_kwargs["model"]}
118
+ return {"model": f"[object of type {type(self.huggingface_pipeline_kwargs['model'])}]"}
119
+
120
+ def warm_up(self) -> None:
121
+ """
122
+ Initializes the component.
123
+ """
124
+ if self.pipeline is None:
125
+ self.pipeline = pipeline(**self.huggingface_pipeline_kwargs)
126
+
127
+ # Verify labels from the model configuration file match provided labels
128
+ label2id = self.pipeline.model.config.label2id
129
+ if label2id is not None:
130
+ labels = set(label2id.keys())
131
+ if set(self.labels) != labels:
132
+ msg = (
133
+ f"The provided labels do not match the labels in the model configuration file. "
134
+ f"Provided labels: {self.labels}. Model labels: {labels}"
135
+ )
136
+ raise ValueError(msg)
137
+
138
+ def to_dict(self) -> dict[str, Any]:
139
+ """
140
+ Serializes the component to a dictionary.
141
+
142
+ :returns:
143
+ Dictionary with serialized data.
144
+ """
145
+ serialization_dict = default_to_dict(
146
+ self,
147
+ labels=self.labels,
148
+ model=self.huggingface_pipeline_kwargs["model"],
149
+ huggingface_pipeline_kwargs=self.huggingface_pipeline_kwargs,
150
+ token=self.token,
151
+ )
152
+
153
+ huggingface_pipeline_kwargs = serialization_dict["init_parameters"]["huggingface_pipeline_kwargs"]
154
+ huggingface_pipeline_kwargs.pop("token", None)
155
+
156
+ serialize_hf_model_kwargs(huggingface_pipeline_kwargs)
157
+ return serialization_dict
158
+
159
+ @classmethod
160
+ def from_dict(cls, data: dict[str, Any]) -> "TransformersTextRouter":
161
+ """
162
+ Deserializes the component from a dictionary.
163
+
164
+ :param data:
165
+ Dictionary to deserialize from.
166
+ :returns:
167
+ Deserialized component.
168
+ """
169
+ if data["init_parameters"].get("huggingface_pipeline_kwargs") is not None:
170
+ deserialize_hf_model_kwargs(data["init_parameters"]["huggingface_pipeline_kwargs"])
171
+ return default_from_dict(cls, data)
172
+
173
+ def run(self, text: str) -> dict[str, str]:
174
+ """
175
+ Routes the text strings to different connections based on a category label.
176
+
177
+ :param text: A string of text to route.
178
+ :returns:
179
+ A dictionary with the label as key and the text as value.
180
+
181
+ :raises TypeError:
182
+ If the input is not a str.
183
+ """
184
+ if self.pipeline is None:
185
+ self.warm_up()
186
+
187
+ if not isinstance(text, str):
188
+ msg = "TransformersTextRouter expects a str as input."
189
+ raise TypeError(msg)
190
+
191
+ # mypy doesn't know this is set in warm_up
192
+ prediction = self.pipeline( # type: ignore[misc]
193
+ [text], return_all_scores=False, function_to_apply="none"
194
+ )
195
+ label = prediction[0]["label"]
196
+ return {label: text}
@@ -0,0 +1,205 @@
1
+ # SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
5
+ from typing import Any
6
+
7
+ from haystack import component, default_from_dict, default_to_dict
8
+ from haystack.utils import ComponentDevice, Secret
9
+ from haystack.utils.hf import deserialize_hf_model_kwargs, serialize_hf_model_kwargs
10
+
11
+ from haystack_integrations.components.common.transformers.utils import _resolve_hf_pipeline_kwargs
12
+ from transformers import Pipeline as HfPipeline
13
+ from transformers import pipeline
14
+
15
+
16
+ @component
17
+ class TransformersZeroShotTextRouter:
18
+ """
19
+ Routes the text strings to different connections based on a category label.
20
+
21
+ Specify the set of labels for categorization when initializing the component.
22
+
23
+ ### Usage example
24
+
25
+ ```python
26
+ from haystack import Document
27
+ from haystack.components.embedders import SentenceTransformersTextEmbedder, SentenceTransformersDocumentEmbedder
28
+ from haystack.components.retrievers import InMemoryEmbeddingRetriever
29
+ from haystack.core.pipeline import Pipeline
30
+ from haystack.document_stores.in_memory import InMemoryDocumentStore
31
+
32
+ from haystack_integrations.components.routers.transformers import TransformersZeroShotTextRouter
33
+
34
+ document_store = InMemoryDocumentStore()
35
+ doc_embedder = SentenceTransformersDocumentEmbedder(model="intfloat/e5-base-v2")
36
+ docs = [
37
+ Document(
38
+ content="Germany, officially the Federal Republic of Germany, is a country in the western region of "
39
+ "Central Europe. The nation's capital and most populous city is Berlin and its main financial centre "
40
+ "is Frankfurt; the largest urban area is the Ruhr."
41
+ ),
42
+ Document(
43
+ content="France, officially the French Republic, is a country located primarily in Western Europe. "
44
+ "France is a unitary semi-presidential republic with its capital in Paris, the country's largest city "
45
+ "and main cultural and commercial centre; other major urban areas include Marseille, Lyon, Toulouse, "
46
+ "Lille, Bordeaux, Strasbourg, Nantes and Nice."
47
+ )
48
+ ]
49
+ docs_with_embeddings = doc_embedder.run(docs)
50
+ document_store.write_documents(docs_with_embeddings["documents"])
51
+
52
+ p = Pipeline()
53
+ p.add_component(instance=TransformersZeroShotTextRouter(labels=["passage", "query"]), name="text_router")
54
+ p.add_component(
55
+ instance=SentenceTransformersTextEmbedder(model="intfloat/e5-base-v2", prefix="passage: "),
56
+ name="passage_embedder"
57
+ )
58
+ p.add_component(
59
+ instance=SentenceTransformersTextEmbedder(model="intfloat/e5-base-v2", prefix="query: "),
60
+ name="query_embedder"
61
+ )
62
+ p.add_component(
63
+ instance=InMemoryEmbeddingRetriever(document_store=document_store),
64
+ name="query_retriever"
65
+ )
66
+ p.add_component(
67
+ instance=InMemoryEmbeddingRetriever(document_store=document_store),
68
+ name="passage_retriever"
69
+ )
70
+
71
+ p.connect("text_router.passage", "passage_embedder.text")
72
+ p.connect("passage_embedder.embedding", "passage_retriever.query_embedding")
73
+ p.connect("text_router.query", "query_embedder.text")
74
+ p.connect("query_embedder.embedding", "query_retriever.query_embedding")
75
+
76
+ # Query Example
77
+ p.run({"text_router": {"text": "What is the capital of Germany?"}})
78
+
79
+ # Passage Example
80
+ p.run({
81
+ "text_router":{
82
+ "text": "The United Kingdom of Great Britain and Northern Ireland, commonly known as the "\
83
+ "United Kingdom (UK) or Britain, is a country in Northwestern Europe, off the north-western coast of "\
84
+ "the continental mainland."
85
+ }
86
+ })
87
+ ```
88
+ """
89
+
90
+ def __init__(
91
+ self,
92
+ labels: list[str],
93
+ multi_label: bool = False,
94
+ model: str = "MoritzLaurer/deberta-v3-base-zeroshot-v1.1-all-33",
95
+ device: ComponentDevice | None = None,
96
+ token: Secret | None = Secret.from_env_var(["HF_API_TOKEN", "HF_TOKEN"], strict=False),
97
+ huggingface_pipeline_kwargs: dict[str, Any] | None = None,
98
+ ) -> None:
99
+ """
100
+ Initializes the TransformersZeroShotTextRouter component.
101
+
102
+ :param labels: The set of labels to use for classification. Can be a single label,
103
+ a string of comma-separated labels, or a list of labels.
104
+ :param multi_label:
105
+ Indicates if multiple labels can be true.
106
+ If `False`, label scores are normalized so their sum equals 1 for each sequence.
107
+ If `True`, the labels are considered independent and probabilities are normalized for each candidate by
108
+ doing a softmax of the entailment score vs. the contradiction score.
109
+ :param model: The name or path of a Hugging Face model for zero-shot text classification.
110
+ :param device: The device for loading the model. If `None`, automatically selects the default device.
111
+ If a device or device map is specified in `huggingface_pipeline_kwargs`, it overrides this parameter.
112
+ :param token: The API token used to download private models from Hugging Face.
113
+ If `True`, uses either `HF_API_TOKEN` or `HF_TOKEN` environment variables.
114
+ To generate these tokens, run `transformers-cli login`.
115
+ :param huggingface_pipeline_kwargs: A dictionary of keyword arguments for initializing the Hugging Face
116
+ zero shot text classification.
117
+ """
118
+ self.token = token
119
+ self.labels = labels
120
+ self.multi_label = multi_label
121
+ component.set_output_types(self, **dict.fromkeys(labels, str))
122
+
123
+ huggingface_pipeline_kwargs = _resolve_hf_pipeline_kwargs(
124
+ huggingface_pipeline_kwargs=huggingface_pipeline_kwargs or {},
125
+ model=model,
126
+ task="zero-shot-classification",
127
+ supported_tasks=["zero-shot-classification"],
128
+ device=device,
129
+ token=token,
130
+ )
131
+ self.huggingface_pipeline_kwargs = huggingface_pipeline_kwargs
132
+ self.pipeline: HfPipeline | None = None
133
+
134
+ def _get_telemetry_data(self) -> dict[str, Any]:
135
+ """
136
+ Data that is sent to Posthog for usage analytics.
137
+ """
138
+ if isinstance(self.huggingface_pipeline_kwargs["model"], str):
139
+ return {"model": self.huggingface_pipeline_kwargs["model"]}
140
+ return {"model": f"[object of type {type(self.huggingface_pipeline_kwargs['model'])}]"}
141
+
142
+ def warm_up(self) -> None:
143
+ """
144
+ Initializes the component.
145
+ """
146
+ if self.pipeline is None:
147
+ self.pipeline = pipeline(**self.huggingface_pipeline_kwargs)
148
+
149
+ def to_dict(self) -> dict[str, Any]:
150
+ """
151
+ Serializes the component to a dictionary.
152
+
153
+ :returns:
154
+ Dictionary with serialized data.
155
+ """
156
+ serialization_dict = default_to_dict(
157
+ self, labels=self.labels, huggingface_pipeline_kwargs=self.huggingface_pipeline_kwargs, token=self.token
158
+ )
159
+
160
+ huggingface_pipeline_kwargs = serialization_dict["init_parameters"]["huggingface_pipeline_kwargs"]
161
+ huggingface_pipeline_kwargs.pop("token", None)
162
+
163
+ serialize_hf_model_kwargs(huggingface_pipeline_kwargs)
164
+ return serialization_dict
165
+
166
+ @classmethod
167
+ def from_dict(cls, data: dict[str, Any]) -> "TransformersZeroShotTextRouter":
168
+ """
169
+ Deserializes the component from a dictionary.
170
+
171
+ :param data:
172
+ Dictionary to deserialize from.
173
+ :returns:
174
+ Deserialized component.
175
+ """
176
+ if data["init_parameters"].get("huggingface_pipeline_kwargs") is not None:
177
+ deserialize_hf_model_kwargs(data["init_parameters"]["huggingface_pipeline_kwargs"])
178
+ return default_from_dict(cls, data)
179
+
180
+ def run(self, text: str) -> dict[str, str]:
181
+ """
182
+ Routes the text strings to different connections based on a category label.
183
+
184
+ :param text: A string of text to route.
185
+ :returns:
186
+ A dictionary with the label as key and the text as value.
187
+
188
+ :raises TypeError:
189
+ If the input is not a str.
190
+ """
191
+ if self.pipeline is None:
192
+ self.warm_up()
193
+
194
+ if not isinstance(text, str):
195
+ msg = "TransformersZeroShotTextRouter expects a str as input."
196
+ raise TypeError(msg)
197
+
198
+ # mypy doesn't know this is set in warm_up
199
+ prediction = self.pipeline( # type: ignore[misc]
200
+ [text], candidate_labels=self.labels, multi_label=self.multi_label
201
+ )
202
+ predicted_scores = prediction[0]["scores"]
203
+ max_score_index = max(range(len(predicted_scores)), key=predicted_scores.__getitem__)
204
+ label = prediction[0]["labels"][max_score_index]
205
+ return {label: text}
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: transformers-haystack
3
+ Version: 0.1.0
4
+ Summary: Haystack integration for transformers
5
+ Project-URL: Documentation, https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/transformers#readme
6
+ Project-URL: Issues, https://github.com/deepset-ai/haystack-core-integrations/issues
7
+ Project-URL: Source, https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/transformers
8
+ Author-email: deepset GmbH <info@deepset.ai>
9
+ License-Expression: Apache-2.0
10
+ License-File: LICENSE.txt
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Programming Language :: Python :: Implementation :: CPython
20
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
21
+ Requires-Python: >=3.10
22
+ Requires-Dist: haystack-ai>=2.30.0
23
+ Requires-Dist: transformers[sentencepiece,torch]>=4.57.0
24
+ Description-Content-Type: text/markdown
25
+
26
+ # transformers-haystack
27
+
28
+ [![PyPI - Version](https://img.shields.io/pypi/v/transformers-haystack.svg)](https://pypi.org/project/transformers-haystack)
29
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/transformers-haystack.svg)](https://pypi.org/project/transformers-haystack)
30
+
31
+ - [Integration page](https://haystack.deepset.ai/integrations/huggingface)
32
+ - [Changelog](https://github.com/deepset-ai/haystack-core-integrations/blob/main/integrations/transformers/CHANGELOG.md)
33
+
34
+ ---
35
+
36
+ ## Contributing
37
+
38
+ Refer to the general [Contribution Guidelines](https://github.com/deepset-ai/haystack-core-integrations/blob/main/CONTRIBUTING.md).
@@ -0,0 +1,24 @@
1
+ haystack_integrations/components/classifiers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ haystack_integrations/components/classifiers/transformers/__init__.py,sha256=xFmrrKECbqO8i0E883s7-K6bUAlPuWzXWaQ2-miBzTY,246
3
+ haystack_integrations/components/classifiers/transformers/zero_shot_document_classifier.py,sha256=fw33Kq1UmqvFnbrVaR6QJ43M6SYdLt-DuQz7FzT2Dd0,10530
4
+ haystack_integrations/components/common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ haystack_integrations/components/common/transformers/__init__.py,sha256=eHD7xrty2PCky_gG3ty19rpM4WfV32TyytM7gJODwl4,110
6
+ haystack_integrations/components/common/transformers/utils.py,sha256=ObCY0oTqctum-5uaouqk_7RbqR48-grLWozp0stkYTs,10023
7
+ haystack_integrations/components/extractors/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ haystack_integrations/components/extractors/transformers/__init__.py,sha256=MfTYvVt05ffO59XmRbwnECpCOueD_fWnB7jmaP9WVKs,275
9
+ haystack_integrations/components/extractors/transformers/named_entity_extractor.py,sha256=65K2nR9x2hQ0jc9DCBeaXV-xRzTlWhjHibhSYf_SbaY,9188
10
+ haystack_integrations/components/generators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ haystack_integrations/components/generators/transformers/__init__.py,sha256=RP5_IZLPbCgd_9STdnnNy5qLS8Opj6LsfWLRIJeQCqw,210
12
+ haystack_integrations/components/generators/transformers/chat/__init__.py,sha256=eHD7xrty2PCky_gG3ty19rpM4WfV32TyytM7gJODwl4,110
13
+ haystack_integrations/components/generators/transformers/chat/chat_generator.py,sha256=Z-GOA2vW2gHfuPsRXkL9pUPgB4NBtA4gCZuzkqJBT0Y,31340
14
+ haystack_integrations/components/readers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ haystack_integrations/components/readers/transformers/__init__.py,sha256=iZdcE2OMB7Ww16bTK4iLOqOFIkfw50P3ENlegxJRlpk,214
16
+ haystack_integrations/components/readers/transformers/extractive_reader.py,sha256=GaZjA6dEkHV04xw7cPQztmZ9qWKZm-wYL72LAFy-Nr0,30082
17
+ haystack_integrations/components/routers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ haystack_integrations/components/routers/transformers/__init__.py,sha256=yeWWf1-Ubz9ekT-FJKjGQHLPuEXxvYIe79HgXVd7Ghs,296
19
+ haystack_integrations/components/routers/transformers/text_router.py,sha256=8kLzEiWUpT9M0NzLlqa3KJ1mFRDQ8E0E_-alvlJ0kDQ,7591
20
+ haystack_integrations/components/routers/transformers/zero_shot_text_router.py,sha256=nS0ufLG6e4FHIcBcMzdrbHyvYEJzGKsZEjEBijXXpYU,8751
21
+ transformers_haystack-0.1.0.dist-info/METADATA,sha256=FhtSX9PBR0_1juZlHsoFXDym6951Z4U-afuEppa5tqk,1886
22
+ transformers_haystack-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
23
+ transformers_haystack-0.1.0.dist-info/licenses/LICENSE.txt,sha256=OrAtTu4aPmrTjKDSTzkSPgo_ji6NOMWO2N9JOTFyAzM,11350
24
+ transformers_haystack-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2023-present deepset GmbH
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.