mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +00:00
Add distribution CLI scaffolding
This commit is contained in:
parent
09cf3fe78b
commit
5a583cf16e
13 changed files with 277 additions and 3 deletions
|
@ -6,9 +6,10 @@
|
|||
|
||||
import argparse
|
||||
|
||||
from llama_toolchain.cli.download import Download
|
||||
from llama_toolchain.cli.inference.inference import InferenceParser
|
||||
from llama_toolchain.cli.model.model import ModelParser
|
||||
from .distribution import DistributionParser
|
||||
from .download import Download
|
||||
from .inference import InferenceParser
|
||||
from .model import ModelParser
|
||||
|
||||
|
||||
class LlamaCLIParser:
|
||||
|
@ -30,6 +31,7 @@ class LlamaCLIParser:
|
|||
Download.create(subparsers)
|
||||
InferenceParser.create(subparsers)
|
||||
ModelParser.create(subparsers)
|
||||
DistributionParser.create(subparsers)
|
||||
|
||||
# Import sub-commands from agentic_system if they exist
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue