mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 12:07:34 +00:00
add llama model subcommand
This commit is contained in:
parent
4417407652
commit
f0e0903270
5 changed files with 77 additions and 0 deletions
|
@ -2,6 +2,7 @@ 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
|
||||
|
||||
|
||||
class LlamaCLIParser:
|
||||
|
@ -22,6 +23,7 @@ class LlamaCLIParser:
|
|||
# Add sub-commands
|
||||
Download.create(subparsers)
|
||||
InferenceParser.create(subparsers)
|
||||
ModelParser.create(subparsers)
|
||||
|
||||
# Import sub-commands from agentic_system if they exist
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue