mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
7 lines
184 B
Python
7 lines
184 B
Python
from autogpt.commands.command import command
|
|
|
|
|
|
@command("function_based", "Function-based test command")
|
|
def function_based(arg1: int, arg2: str) -> str:
|
|
return f"{arg1} - {arg2}"
|