07822c0
9bed878
07822c0
9bed878
07822c0
c637d22
|
|
import gradio as gr
from fastcore.all import *
def greet(name):
return f'{Path().ls()} {os.getcwd()}'
@call_parse
def main():
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
|