Gita_Qdrant / app.py
sudhir2016's picture
Update app.py
35b6c2e
raw
history blame
171 Bytes
import gradio as gr
g=open('test.txt')
def answer(query):
out=g
return out
demo = gr.Interface(fn=answer, inputs='text',outputs='text',examples=[['song celestial']])