freddyaboulton's picture
Upload folder using huggingface_hub
55970fa verified
raw
history blame contribute delete
252 Bytes
import gradio as gr
demo = gr.Interface(
lambda x, y: (x + y if y is not None else x, x + y if y is not None else x),
["textbox", "state"],
["textbox", "state"], live=True, api_name="predict")
if __name__ == "__main__":
demo.launch()