mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +00:00
Distribution server now functioning
This commit is contained in:
parent
041cafbee3
commit
2cf9915806
21 changed files with 635 additions and 266 deletions
|
@ -8,7 +8,8 @@ import argparse
|
|||
|
||||
from .distribution import DistributionParser
|
||||
from .download import Download
|
||||
from .inference import InferenceParser
|
||||
|
||||
# from .inference import InferenceParser
|
||||
from .model import ModelParser
|
||||
|
||||
|
||||
|
@ -29,7 +30,7 @@ class LlamaCLIParser:
|
|||
|
||||
# Add sub-commands
|
||||
Download.create(subparsers)
|
||||
InferenceParser.create(subparsers)
|
||||
# InferenceParser.create(subparsers)
|
||||
ModelParser.create(subparsers)
|
||||
DistributionParser.create(subparsers)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue