File size: 244 Bytes
ef818ff
 
f4bce5b
0e3e9da
ef818ff
 
36a3749
 
ef818ff
36a3749
 
ef818ff
 
 
 
5307d98
ef818ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr

llm_calc_app = gr.Blocks()
with llm_calc_app:

    with gr.Row():
        start_date = gr.DateTime(
        )

        end_date = gr.DateTime(
        )


    llm_calc_app.load()
llm_calc_app.queue()
llm_calc_app.launch()