Spaces:
Sleeping
Sleeping
File size: 302 Bytes
da1fcf4 50f2c43 da1fcf4 a8635e4 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
from code_summarizer import query
demo = gr.Interface(
fn=query,
inputs=[
gr.Dropdown(['Python', 'PHP','Java','Go','Javascript','Ruby'],label='Select the programming language'),
gr.Textbox(label="Enter the user prompt"),
],
outputs="text",
)
demo.launch() |