fixed load from spaces + added test (#1636)

* fixed load from spaces + added test

* formatting

* removed print
This commit is contained in:
Abubakar Abid 2022-07-01 20:21:54 -07:00 committed by GitHub
parent a2b84199d8
commit 00a1894bf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View File

@ -288,6 +288,7 @@ class Blocks(BlockContext):
@classmethod
def from_config(cls, config: dict, fns: List[Callable]) -> Blocks:
"""Factory method that creates a Blocks from a config and list of functions."""
config = copy.deepcopy(config)
components_config = config["components"]
original_mapping: Dict[int, Block] = {}
@ -325,6 +326,7 @@ class Blocks(BlockContext):
targets = dependency.pop("targets")
trigger = dependency.pop("trigger")
dependency.pop("backend_fn")
dependency.pop("documentation", None)
dependency["inputs"] = [
original_mapping[i] for i in dependency["inputs"]
]

View File

@ -88,6 +88,23 @@ class TestBlocks(unittest.TestCase):
config.pop("version") # remove version key
self.assertTrue(assert_configs_are_equivalent_besides_ids(XRAY_CONFIG, config))
def test_load_from_config(self):
def update(name):
return f"Welcome to Gradio, {name}!"
with gr.Blocks() as demo1:
inp = gr.Textbox(placeholder="What is your name?")
out = gr.Textbox()
inp.submit(fn=update, inputs=inp, outputs=out, api_name="greet")
gr.Image().style(height=54, width=240)
config1 = demo1.get_config_file()
demo2 = gr.Blocks.from_config(config1, [update])
config2 = demo2.get_config_file()
self.assertTrue(assert_configs_are_equivalent_besides_ids(config1, config2))
@pytest.mark.asyncio
async def test_async_function(self):
async def wait():