devmodetest2 / perm /tools /multiply_tool.py
tengel's picture
Upload 56 files
9c9a39f verified
raw
history blame contribute delete
163 Bytes
from langchain_core.tools import tool
@tool
def multiply(a: int, b: int) -> int:
"""Multiply two numbers."""
print("Multiply used")
return a * b