query_bot / app.py
ShynBui's picture
Update app.py
be81784 verified
raw
history blame
139 Bytes
import gradio as gr
if __name__ == "__main__":
demo = gr.Interface(fn=get_answer, inputs="text", outputs="text")
demo.launch()