Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thewise
/
ConversationalChain
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c157cd5
ConversationalChain
/
app
/
gradio_interface.py
Rohan Kataria
folder structure and basic app
c157cd5
almost 2 years ago
raw
Copy download link
history
blame
Safe
153 Bytes
# gradio_interface.py
import
gradio
as
gr
from
main
import
greet
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)