mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 16:17:57 +01:00
Add listening port options for listening mode.
This commit is contained in:
parent
69ffef4391
commit
3742d3b18a
@ -36,6 +36,7 @@ parser.add_argument('--no-stream', action='store_true', help='Don\'t stream the
|
||||
parser.add_argument('--settings', type=str, help='Load the default interface settings from this json file. See settings-template.json for an example.')
|
||||
parser.add_argument('--extensions', type=str, help='The list of extensions to load. If you want to load more than one extension, write the names separated by commas and between quotation marks, "like,this".')
|
||||
parser.add_argument('--listen', action='store_true', help='Make the web UI reachable from your local network.')
|
||||
parser.add_argument('--listen-port', type=int, choices=range(0, 65535), help='The listening port the server will use.')
|
||||
parser.add_argument('--share', action='store_true', help='Create a public URL. This is useful for running the web UI on Google Colab or similar.')
|
||||
parser.add_argument('--verbose', action='store_true', help='Print the prompts to the terminal.')
|
||||
args = parser.parse_args()
|
||||
@ -647,6 +648,6 @@ else:
|
||||
|
||||
interface.queue()
|
||||
if args.listen:
|
||||
interface.launch(share=args.share, server_name="0.0.0.0")
|
||||
interface.launch(share=args.share, server_name="0.0.0.0", server_port=args.listen_port)
|
||||
else:
|
||||
interface.launch(share=args.share)
|
||||
|
Loading…
Reference in New Issue
Block a user