File size: 163 Bytes
9c9a39f
 
 
 
 
 
 
1
2
3
4
5
6
7
from langchain_core.tools import tool

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