Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
phate334
/
gguf-parser-web
like
2
Running
App
Files
Files
Community
2678ef5
gguf-parser-web
/
app.py
phate334
[add] init
2678ef5
27 days ago
raw
Copy download link
history
blame
Safe
188 Bytes
import
os
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
iface.launch()