logical_reasoning_agent / utils /custom_tools.py
hasanmalik825-gh
agent push with basic end points
bb35792
raw
history blame contribute delete
636 Bytes
from langchain_core.tools import tool
import numexpr
import math
@tool
def calculator(expression: str) -> str:
"""Calculate expression using Python's numexpr library.
Expression should be a single line mathematical expression
that solves the problem.
Examples:
"37593 * 67" for "37593 times 67"
"37593**(1/5)" for "37593^(1/5)"
"""
local_dict = {"pi": math.pi, "e": math.e}
return str(
numexpr.evaluate(
expression.strip(),
global_dict={}, # restrict access to globals
local_dict=local_dict, # add common mathematical functions
)
)