File size: 153 Bytes
da1fcf4
 
 
 
 
 
 
 
086703b
1
2
3
4
5
6
7
8
9
import gradio as gr
from code_summarizer import query

demo = gr.Interface(
   fn=query,
   inputs=['text'],
   outputs="text",
)
demo.launch(share=True)