File size: 167 Bytes
052505d
a1c9cfd
052505d
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr
from utils import get_answer


if __name__ == "__main__":
    demo = gr.Interface(fn=get_answer, inputs="text", outputs="text")
    demo.launch()