CodingWk2 / app (1).py
GH2005's picture
Update app (1).py
ed61db5 verified
raw
history blame contribute delete
193 Bytes
import gradio as gr
def echo(x):
return x
demo = gr.Interface(fn=echo, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch(server_name="0.0.0.0", server_port=7860)