File size: 197 Bytes
3159f31
04a86c8
 
 
 
cd0a088
04a86c8
7a88080
04a86c8
 
cd0a088
04a86c8
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr
import os

key = os.environ.get("var")

# text = "it works!"

def function(str):
    return key

iface = gr.Interface(fn=function, inputs="text", outputs="text")
iface.launch()