Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ahren09
/
AgentReview
like
8
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
da473f8
AgentReview
/
app.py
Ahren09
Create app.py
6c58fd4
verified
3 months ago
raw
Copy download link
history
blame
Safe
140 Bytes
import
gradio
as
gr
def
echo_text
(
text
):
return
text
iface = gr.Interface(fn=echo_text, inputs=
"text"
, outputs=
"text"
)
iface.launch()