Skip to content

Commit

Permalink
Fixes #207
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudotensor committed May 30, 2023
1 parent f864c0a commit 6129b1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gradio_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,8 @@ def count_chat_tokens(model_state1, chat1, prompt_type1):
demo.launch(share=kwargs['share'], server_name="0.0.0.0", show_error=True,
favicon_path=favicon_path, prevent_thread_lock=True,
auth=kwargs['auth'])
print("Started GUI", flush=True)
if kwargs['verbose']:
print("Started GUI", flush=True)
if kwargs['block_gradio_exit']:
demo.block_thread()

Expand Down

0 comments on commit 6129b1a

Please sign in to comment.