Add a message at the end of the Wasm worker initialization (#6013)

* Add a message at the end of the Wasm worker initialization

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Yuichiro Tachibana (Tsuchiya) 2023-10-20 01:00:23 +09:00 committed by GitHub
parent 62c0a34a40
commit fa154fb818
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
"@gradio/wasm": minor
---
feat:Add a message at the end of the Wasm worker initialization

View File

@ -192,6 +192,8 @@ matplotlib.use("agg")
await pyodide.runPythonAsync(unloadModulesPySource);
unload_local_modules = pyodide.globals.get("unload_local_modules");
console.debug("Python utility functions are set up.");
updateProgress("Initialization completed");
}
self.onmessage = async (event: MessageEvent<InMessage>): Promise<void> => {