from langchain_core.tools import tool @tool def multiply(a: int, b: int) -> int: """Multiply two numbers.""" print("Multiply used") return a * b