Spaces:
Sleeping
Sleeping
import gradio as gr | |
from utils import * | |
gradio_app = gr.Interface( | |
answer, | |
inputs= gr.Image(label="Input Image", sources=['upload', 'webcam'], type="pil"), | |
outputs= gr.Text(), | |
title="Describe things", | |
) | |
if __name__ == '__main__': | |
gradio_app.launch(share=True) |