Add distribution CLI scaffolding

This commit is contained in:
Ashwin Bharambe 2024-08-01 14:44:57 -07:00
parent 09cf3fe78b
commit 5a583cf16e
13 changed files with 277 additions and 3 deletions

View file

@ -0,0 +1,29 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
import argparse
from llama_toolchain.cli.subcommand import Subcommand
class DistributionCreate(Subcommand):
def __init__(self, subparsers: argparse._SubParsersAction):
super().__init__()
self.parser = subparsers.add_parser(
"create",
prog="llama distribution create",
description="create a Llama stack distribution",
formatter_class=argparse.RawTextHelpFormatter,
)
self._add_arguments()
self.parser.set_defaults(func=self._run_distribution_create_cmd)
def _add_arguments(self):
pass
def _run_distribution_create_cmd(self, args: argparse.Namespace) -> None:
raise NotImplementedError()