Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Prathmesh48
/
Ai_Self_assesment
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Prathmesh48
commited on
Jun 28, 2024
Commit
0c6517e
·
verified
·
1 Parent(s):
bc591cb
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import os
2
+
import gradio as gr
3
+
4
+
def print_cwd():
5
+
return os.getcwd()
6
+
7
+
iface = gr.Interface(fn=print_cwd, inputs=[], outputs="text")
8
+
iface.launch()