File size: 855 Bytes
20905da
f57bf28
 
20905da
 
f57bf28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import gradio as gr
import pandas as pd
import numpy as np


def full_function(xml_file):

    output_text = "yes"
    return output_text



desc = "Upload XML file, convert to .csv file, and analyze transactions"

with gr.Blocks() as demo: 

    xml_file = gr.File(label = "Upload XML file here")
     
    # input_employees = gr.CheckboxGroup(["Transfer Solutions", "Ordina", "PwC", "Quistor", "Full Orbit", "Accenture", "Atos", "AMIS"], label="Oracle Partners", info="Who to judge?")
    # input_question = gr.Text(label="What activity is the Oracle Partner performing?")
    # additional_info = gr.Text(label="Additional information (optional)")
    output_text = gr.Text(label="R")


    submit_btn = gr.Button("Run GenAI - Cohere in Oracle Cloud")


gr.Interface(fn=full_function, inputs=xml_file, outputs=output_text, title=desc).launch(share=True)