LayBraid
test app
5b62fe7
raw
history blame
189 Bytes
import gradio as gr
def send_inputs(inputs):
print(inputs)
return "Hello"
if __name__ == "__main__":
gr.Interface(fn=send_inputs, inputs=["text"], outputs="image").launch()