Hide show API link when in gradio lite (#6320)

* hide show_api button if IS_WASM ist true

* add test

* add changeset

* add changeset

* formatting

* revert ruff change

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Hannah 2023-11-07 17:49:34 +01:00 committed by GitHub
parent 5551d8e439
commit 570866a3bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"gradio": patch
---
fix:Hide show API link when in gradio lite

View File

@ -548,7 +548,7 @@ class Blocks(BlockContext, BlocksEvents, metaclass=BlocksMeta):
self.app_id = random.getrandbits(64)
self.temp_file_sets = []
self.title = title
self.show_api = True
self.show_api = not wasm_utils.IS_WASM
# Only used when an Interface is loaded from a config
self.predict = None

View File

@ -3,6 +3,7 @@ import functools
import os
import tempfile
from contextlib import closing
from unittest import mock as mock
import gradio_client as grc
import numpy as np
@ -22,6 +23,7 @@ from gradio import (
Textbox,
close_all,
routes,
wasm_utils,
)
from gradio.route_utils import FnIndexInferError
@ -769,3 +771,19 @@ def test_api_name_set_for_all_events(connect):
assert client.predict("freddy", api_name="/goodbye") == "Goodbye freddy"
assert client.predict("freddy", api_name="/greet_me") == "Hello"
assert client.predict("freddy", api_name="/Say__goodbye") == "Goodbye"
class TestShowAPI:
@mock.patch.object(wasm_utils, "IS_WASM", True)
def test_show_api_false_when_is_wasm_true(self):
interface = Interface(lambda x: x, "text", "text", examples=[["hannah"]])
assert (
interface.show_api is False
), "show_api should be False when IS_WASM is True"
@mock.patch.object(wasm_utils, "IS_WASM", False)
def test_show_api_true_when_is_wasm_false(self):
interface = Interface(lambda x: x, "text", "text", examples=[["hannah"]])
assert (
interface.show_api is True
), "show_api should be True when IS_WASM is False"