File size: 268 Bytes
aa5b409
 
 
 
 
53a0ef0
 
aa5b409
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
from pathlib import Path

def greet(name):
    value = "Hello " + name + "!!"
    with Path("/data/logs.txt").open("a") as f:
        f.write(value + "\n")
    return value

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()