Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
m-ric
/
open_Deep-Research
like
295
Running
on
CPU Upgrade
App
Files
Files
Community
16
Fetching metadata from the HF Docker repository...
a63edd5
open_Deep-Research
/
app.py
m-ric
HF staff
initial commit
a63edd5
verified
10 days 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()