1794405984
* add type annotations to run,warm_up, __str__ * none and any type annotations * type annotations * __init__ return type annotation * list[Document] instead of Any return type annotations * fmt * typing * add run_async return type annotation for LinkContentFetcher * run_async return type annotations * fixing docstrings --------- Co-authored-by: David S. Batista <dsbatista@gmail.com>
25 lines
551 B
Python
25 lines
551 B
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from haystack.core.component import component
|
|
|
|
|
|
@component
|
|
class AddFixedValue:
|
|
"""
|
|
Adds two values together.
|
|
"""
|
|
|
|
def __init__(self, add: int = 1) -> None:
|
|
self.add = add
|
|
|
|
@component.output_types(result=int)
|
|
def run(self, value: int, add: int | None = None):
|
|
"""
|
|
Adds two values together.
|
|
"""
|
|
if add is None:
|
|
add = self.add
|
|
return {"result": value + add}
|