c7bc5b54de
* add SuperComponent with utils and tests * fix tests, circular imports * use __all__ * reno and walrus operator * add InvalidMappingValueError, InvalidMappingTypeError * add run_async * add usage example
8 lines
185 B
Python
8 lines
185 B
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from .super_component import SuperComponent
|
|
|
|
__all__ = ["SuperComponent"]
|