HemaSowjanya's picture
Update app.py
086703b verified
raw
history blame
153 Bytes
import gradio as gr
from code_summarizer import query
demo = gr.Interface(
fn=query,
inputs=['text'],
outputs="text",
)
demo.launch(share=True)