Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketmaurya committed Dec 13, 2023
1 parent d25cf9d commit f7d3a2a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/fastserve/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""A Python Project"""
from .base_fastserve import FastServe

__version__ = "0.0.1"
2 changes: 1 addition & 1 deletion src/fastserve/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .base_fastserve import FastServe
from fastserve import FastServe

serve = FastServe()
serve.run_server()
6 changes: 3 additions & 3 deletions src/fastserve/models/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

from fastserve.utils import get_default_device

from . import ServeSDXLTurbo
from .llama_cpp import ServeLlamaCpp
from .ssd import ServeSSD1B
from fastserve.models.sdxl_turbo import ServeSDXLTurbo
from fastserve.models.llama_cpp import ServeLlamaCpp
from fastserve.models.ssd import ServeSSD1B

parser = argparse.ArgumentParser(description="Serve models with FastServe")
parser.add_argument("--model", type=str, required=True, help="Name of the model")
Expand Down

0 comments on commit f7d3a2a

Please sign in to comment.