File size: 412 Bytes
4ff79c6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
#
# SPDX-License-Identifier: Apache-2.0
from typing import List
from haystack.core.component import component
@component
class TextSplitter:
@component.output_types(output=List[str])
def run(self, sentence: str):
"""Takes a sentence in input and returns its words in output."""
return {"output": sentence.split()}
|