mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
cedb0229f7
* selenium test file * selenium test * added save_to as interface attribute, 4 demo tests with selenium * change name to test_demos * fixed wait until, removed path insertion * added selenium to circleci config * trying chrome driver image * removing cache from circlci * using chromedriver_installer * adding deps for chromedriver * sudo * removed chromedriver * added chromium-chromedriver * using chromedriver-py * using service instead of exec path * using latest selenium * using browsers image * added cwd to tmp and test paths * saving artifacts * added tmp.txt * changed driver size * elem.text sleep * driver size fix * saving artifacts * saving artifacts correctly * saving artifacts correctly * saving artifactS * print statement * print statement * print statement * correct dir * debugging * debugging * debugging * fixing wonderful * running comparison * current dir fix * changing longest_word * fixed longest_word * clean up * fixing new output label name * time limit on while loops * refactoring common code * removed setUp * removed server_port declaration from demos Co-authored-by: Ali Abid <aliabid94@gmail.com>
19 lines
401 B
Python
19 lines
401 B
Python
# Demo: (Textbox) -> (Label)
|
|
|
|
import gradio as gr
|
|
|
|
def longest_word(text):
|
|
words = text.split(" ")
|
|
lengths = [len(word) for word in words]
|
|
return max(lengths)
|
|
|
|
ex = "The quick brown fox jumped over the lazy dog."
|
|
|
|
io = gr.Interface(longest_word, "textbox", "label",
|
|
interpretation="default", examples=[[ex]])
|
|
|
|
io.test_launch()
|
|
|
|
if __name__ == "__main__":
|
|
io.launch()
|