Spaces:
Sleeping
Sleeping
File size: 557 Bytes
ef818ff f4bce5b ef818ff |
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 29 |
import pandas as pd
import gradio as gr
import os
llm_calc_app = gr.Blocks()
with llm_calc_app:
##################################################
with gr.Row():
#####################################
# First Column
####################################
## Language Select
with gr.Column():
with gr.Row():
start_date = gr.DateTime(
)
end_date = gr.DateTime(
)
llm_calc_app.load()
llm_calc_app.queue()
llm_calc_app.launch()
|