Add api build subcommand -- WIP

This commit is contained in:
Ashwin Bharambe 2024-08-26 19:19:37 -07:00 committed by Ashwin Bharambe
parent f5620c09ad
commit 3a337c5f1c
7 changed files with 203 additions and 0 deletions

View file

@ -6,6 +6,7 @@
import argparse
from .api import ApiParser
from .distribution import DistributionParser
from .download import Download
from .model import ModelParser
@ -30,6 +31,7 @@ class LlamaCLIParser:
Download.create(subparsers)
ModelParser.create(subparsers)
DistributionParser.create(subparsers)
ApiParser.create(subparsers)
# Import sub-commands from agentic_system if they exist
try: