def cli(click_context, skip_consistency_check: bool) -> None: """Command-line tool for setting up an Autonomous Economic Agent.""" verbosity_option = click_context.meta.pop("verbosity") click_context.obj = Context(cwd=".", verbosity=verbosity_option) click_context.obj.set_config("skip_consistency_check", skip_consistency_check)
def cli(ctx) -> None: """Command-line tool for setting up an Autonomous Economic Agent.""" ctx.obj = Context(cwd=".")