Distribution server now functioning

This commit is contained in:
Ashwin Bharambe 2024-08-02 13:37:40 -07:00
parent 041cafbee3
commit 2cf9915806
21 changed files with 635 additions and 266 deletions

View file

@ -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)