Add model describe subcommand

This commit is contained in:
Ashwin Bharambe 2024-07-29 18:19:53 -07:00
parent 9d7f283722
commit 45b8a7ffcd
3 changed files with 77 additions and 6 deletions

View file

@ -7,9 +7,10 @@
import argparse
import textwrap
from llama_toolchain.cli.model.describe import ModelDescribe
from llama_toolchain.cli.model.list import ModelList
from llama_toolchain.cli.model.template import ModelTemplate
from llama_toolchain.cli.subcommand import Subcommand
@ -35,3 +36,4 @@ class ModelParser(Subcommand):
# Add sub-commandsa
ModelTemplate.create(subparsers)
ModelList.create(subparsers)
ModelDescribe.create(subparsers)