Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AlterM
/
Test2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Test2
/
app.py
AlterM
Duplicate from RisticksAI/ProfNet4
2f500b5
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
170 Bytes
import
gradio
as
gr
import
start
def
respond
(
message
):
return
start.generate(message)
iface = gr.Interface(fn=respond, inputs=
"text"
, outputs=
"text"
)
iface.launch()