Prathmesh48's picture
Create app.py
0c6517e verified
raw
history blame
149 Bytes
import os
import gradio as gr
def print_cwd():
return os.getcwd()
iface = gr.Interface(fn=print_cwd, inputs=[], outputs="text")
iface.launch()