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>
22 lines
478 B
Python
22 lines
478 B
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
class SchemaGenerationError(Exception):
|
|
"""
|
|
Exception raised when automatic schema generation fails.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class ToolInvocationError(Exception):
|
|
"""
|
|
Exception raised when a Tool invocation fails.
|
|
"""
|
|
|
|
def __init__(self, message: str, tool_name: str) -> None:
|
|
super().__init__(message)
|
|
self.tool_name = tool_name
|