cleanup, tests

This commit is contained in:
2025-01-02 02:49:57 +01:00
parent 4d034c7f2b
commit 71e5fa96f3
4 changed files with 136 additions and 169 deletions

View File

@@ -1,7 +1,19 @@
def tool_dummy(a: int, b: str):
"""
tool_dummy
Args:
a: how much
b: how text?
"""
return "result_%d_%s" % (a, b)
def tool_dummy2(text: str):
"""
tool_dummy2
Args:
text: only text?
"""
return text.upper()