mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 19:04:19 +00:00
Add model list subcommand
This commit is contained in:
parent
a789c47ec9
commit
9d7f283722
4 changed files with 141 additions and 66 deletions
|
@ -7,6 +7,8 @@
|
|||
import argparse
|
||||
import textwrap
|
||||
|
||||
from llama_toolchain.cli.model.list import ModelList
|
||||
|
||||
from llama_toolchain.cli.model.template import ModelTemplate
|
||||
from llama_toolchain.cli.subcommand import Subcommand
|
||||
|
||||
|
@ -31,5 +33,5 @@ class ModelParser(Subcommand):
|
|||
subparsers = self.parser.add_subparsers(title="model_subcommands")
|
||||
|
||||
# Add sub-commandsa
|
||||
# ModelDescribe.create(subparsers)
|
||||
ModelTemplate.create(subparsers)
|
||||
ModelList.create(subparsers)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue