tool functions and pytest

This commit is contained in:
2025-01-01 18:20:50 +01:00
parent 823f13ab51
commit fd7e3d5235
10 changed files with 406 additions and 108 deletions

7
tests/helper.py Normal file
View File

@@ -0,0 +1,7 @@
def tool_dummy(a: int, b: str):
return "result_%d_%s" % (a, b)
def tool_dummy2(text: str):
return text.upper()