mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
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:
parent
5551d8e439
commit
570866a3bd
5
.changeset/red-hands-press.md
Normal file
5
.changeset/red-hands-press.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Hide show API link when in gradio lite
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user