Ensure gradio client works as expected for functions that return nothing. (#5173)

* fixed issue with the js client expecting optional api_info from python gradio runner

* add changeset

* add changeset

---------

Co-authored-by: pngwn <hello@pngwn.io>
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Ray Tri 2023-08-14 09:50:32 -04:00 committed by GitHub
parent 43f3d3d77c
commit 730f0c1d54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/client": patch
"gradio": patch
---
feat:Ensure gradio client works as expected for functions that return nothing.

View File

@ -804,9 +804,9 @@ function transform_output(
remote_url?: string
): unknown[] {
return data.map((d, i) => {
if (api_info.returns?.[i]?.component === "File") {
if (api_info?.returns?.[i]?.component === "File") {
return normalise_file(d, root_url, remote_url);
} else if (api_info.returns?.[i]?.component === "Gallery") {
} else if (api_info?.returns?.[i]?.component === "Gallery") {
return d.map((img) => {
return Array.isArray(img)
? [normalise_file(img[0], root_url, remote_url), img[1]]