Spaces:
Sleeping
Sleeping
import os | |
import gradio as gr | |
def print_cwd(): | |
return os.getcwd() | |
iface = gr.Interface(fn=print_cwd, inputs=[], outputs="text") | |
iface.launch() | |