mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
Update first launch commands to deliver the usage of ";" and app, path_to_local_server, share_url = iface.launch()
This commit is contained in:
parent
51e57675da
commit
054a5850e3
@ -7,4 +7,4 @@ def greet(name):
|
||||
|
||||
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
||||
if __name__ == "__main__":
|
||||
iface.launch()
|
||||
iface.launch();
|
||||
|
@ -11,4 +11,5 @@ iface = gr.Interface(
|
||||
outputs="text",
|
||||
)
|
||||
if __name__ == "__main__":
|
||||
iface.launch()
|
||||
app, path_to_local_server, share_url = iface.launch()
|
||||
|
||||
|
@ -14,4 +14,5 @@ iface = gr.Interface(
|
||||
outputs=["text", "number"],
|
||||
)
|
||||
if __name__ == "__main__":
|
||||
iface.launch()
|
||||
app, path_to_local_server, share_url = iface.launch()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user