refactor(base.py): remove print statement from ToolCreator class

This commit is contained in:
Gabriel Almeida 2023-04-25 09:38:28 -03:00
commit 9f5f222f2a

View file

@ -118,7 +118,6 @@ class ToolCreator(LangChainTypeCreator):
params = self.type_to_loader_dict[name]["params"] # type: ignore
base_classes += [name]
elif tool_type in OTHER_TOOLS:
print(tool_type)
tool_dict = build_template_from_class(tool_type, OTHER_TOOLS)
fields = tool_dict["template"]