This commit is contained in:
Brandon Hancock
2025-03-28 10:55:31 -04:00
parent 1daeaa4a81
commit 4bfb71d749
2 changed files with 0 additions and 9 deletions

View File

@@ -748,7 +748,6 @@ class LLM:
if not LLMContextLengthExceededException(
str(e)
)._is_context_limit_error(str(e)):
print("HERE IS WHERE THE ERROR IS")
logging.error(f"LiteLLM call failed: {str(e)}")
raise

View File

@@ -52,14 +52,6 @@ class ToolUsageErrorException(Exception):
super().__init__(self.message)
@dataclass
class ToolResult:
"""Result of tool execution."""
result: str
result_as_answer: bool = False
class ToolUsage:
"""
Class that represents the usage of a tool by an agent.