File size: 274 Bytes
8bc0b6a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from zeno import inference, ZenoOptions
import gradio as gr


@inference
def gradio_inference(ops: ZenoOptions):
    return (
        [gr.Image(type="filepath"), gr.Textbox(label="Label")],
        gr.Text(label="Output"),
        [ops.data_column, ops.label_column],
    )