Signed-off-by: Yuan Tang <terrytangyuan@gmail.com>
This commit is contained in:
Yuan Tang 2025-01-02 22:23:28 -05:00
parent 6312bc4aa4
commit 01a528c129
No known key found for this signature in database

View file

@ -239,7 +239,12 @@ def main():
"--template", "--template",
help="One of the template names in llama_stack/templates (e.g., tgi, fireworks, remote-vllm, etc.)", help="One of the template names in llama_stack/templates (e.g., tgi, fireworks, remote-vllm, etc.)",
) )
parser.add_argument("--port", type=int, default=int(os.getenv("PORT", 5000)), help="Port to listen on") parser.add_argument(
"--port",
type=int,
default=int(os.getenv("PORT", 5000)),
help="Port to listen on",
)
parser.add_argument( parser.add_argument(
"--disable-ipv6", action="store_true", help="Whether to disable IPv6 support" "--disable-ipv6", action="store_true", help="Whether to disable IPv6 support"
) )