File size: 662 Bytes
4ff79c6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
#
# SPDX-License-Identifier: Apache-2.0
from haystack.core.component import component
@component
class Remainder:
def __init__(self, divisor=3):
if divisor == 0:
raise ValueError("Can't divide by zero")
self.divisor = divisor
component.set_output_types(self, **{f"remainder_is_{val}": int for val in range(divisor)})
def run(self, value: int):
"""
:param value: the value to check the remainder of.
"""
remainder = value % self.divisor
output = {f"remainder_is_{remainder}": value}
return output
|