Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Mr-Cool
/
midterm-rag-poc
like
0
Paused
App
Files
Files
Community
94f5a42
midterm-rag-poc
/
app.py
Mr-Cool
Initial commit
8af365d
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
140 Bytes
import
gradio
as
gr
from
functions
import
*
rag_poc = gr.ChatInterface(get_response)
if
__name__ ==
"__main__"
:
rag_poc.launch()