File size: 442 Bytes
f17bdaf
ccf0104
f17bdaf
 
ccf0104
 
 
 
 
 
 
 
 
43b8b5b
ccf0104
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import gradio as gr
import pandas as pd


def process_inputs(text, file):
    data = pd.read_csv(file.name)
    return f"{text}\n\n{data.to_string()}"


iface = gr.Interface(
    fn=process_inputs,
    inputs=[
        gr.inputs.Textbox(lines=2, placeholder="OpenAI API"),
        gr.Dataframe(row_count = (2, "dynamic"), col_count=(4,"dynamic"), label="Input Data", interactive=1),
    ],
    outputs=gr.outputs.Textbox(),
)

iface.launch()