Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Akjava/gemma-2-27b-it-matcha-tts-en
Akjava
/
mistral-7b-v0.3-matcha-tts-en
like
3
Running
App
Files
Files
Community
80cb67e
mistral-7b-v0.3-matcha-tts-en
/
app.py
Akjava
initial commit
80cb67e
verified
4 months ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()