Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
csalabs
/
AI-EMBD
like
0
Runtime error
App
Files
Files
Community
7f5ca98
AI-EMBD
/
app.py
csalabs
Update app.py
3df7084
over 1 year ago
raw
Copy download link
history
blame
Safe
164 Bytes
import
gradio
as
gr
from
run_localGPT
import
main
def
greet
(
query
):
return
answer
iface = gr.Interface(fn=greet, inputs=query, outputs=answer)
iface.launch()