protobench / app.py
vtrv.vls
secret test
8873b6c
raw
history blame
197 Bytes
import gradio as gr
import os
def greet(name):
return "Hello " + name + os.getenv('GIGACHAT_API_TOKEN')[-4:] + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()