simplechat / app.py1
sdgzero2ai's picture
Rename app.py to app.py1
72fc364 verified
raw
history blame contribute delete
201 Bytes
import gradio as gr
def test(input_text):
return f"Your text was: {input_text}"
demo = gr.Interface(fn=test, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch(share=True)