Fixes to llama stack commands and update docs

This commit is contained in:
Ashwin Bharambe 2024-09-02 18:58:54 -07:00
parent 5927f3c3c0
commit 279565499b
4 changed files with 22 additions and 21 deletions

View file

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