You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
There is no file directory or file which is mentioned in this below import code: There is no function called start_web_service and no file called web.py inside taskweaver/chat/
'''
from taskweaver.chat.web import start_web_service
if not debug:
# debug mode will restart app iteratively, skip the plugin listing
# display_enabled_examples_plugins()
pass
def post_app_start():
if open:
click.secho("launching web browser...", fg="green")
open_url = f"http://{'localhost' if host == '0.0.0.0' else host}:{port}"
click.launch(open_url)
start_web_service(
host,
port,
is_debug=debug,
post_app_start=post_app_start if open else None,
)
Because of this we couldn't able to change the port.
'''
The text was updated successfully, but these errors were encountered:
Describe the bug
There is no file directory or file which is mentioned in this below import code: There is no function called start_web_service and no file called web.py inside taskweaver/chat/
'''
from taskweaver.chat.web import start_web_service
Because of this we couldn't able to change the port.
'''
The text was updated successfully, but these errors were encountered: