add UDFS for make tools.

This commit is contained in:
刘棒棒 2023-12-11 21:12:36 +08:00
parent 2b8dbec5d0
commit 3de10e7656
2 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,9 @@
from metagpt.tools.functions.libs.udf import UDFS
from metagpt.logs import logger
def test_udfs():
assert len(UDFS) > 0
assert 'name' in UDFS[0]
assert 'doc' in UDFS[0]
logger.info(UDFS)