tool evaluations

This commit is contained in:
2025-01-02 01:26:28 +01:00
parent fe9c738891
commit 02b3850a9f
2 changed files with 22 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ Args:
def math_evaluate(expression: str):
"""evaluate and reduce a mathematical expression.
Args:
expression: Reduce mathematic expression (without '=') algebraically..
expression: Reduce mathematic expression (without '=') algebraically.
"""
tokens = math_lexer.tokenize(expression)
@@ -69,4 +69,5 @@ Args:
def register_dummy():
pass # dummy function to run and be sure the decorators have run
"""dummy function to run and be sure the decorators have been initialized"""
pass