mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-03 01:03:59 +00:00
Fix lint
Signed-off-by: Yuan Tang <terrytangyuan@gmail.com>
This commit is contained in:
parent
6312bc4aa4
commit
01a528c129
1 changed files with 6 additions and 1 deletions
|
@ -239,7 +239,12 @@ def main():
|
|||
"--template",
|
||||
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(
|
||||
"--disable-ipv6", action="store_true", help="Whether to disable IPv6 support"
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue