from langchain_core.tools import tool @tool def multiply(a: int, b: int) -> int: """Multiply two numbers. Args: a: first int b: second int Returns: The product of a and b. """ return a * b