ef818ff
f4bce5b
36a3749
ef818ff
36a3749
ef818ff
36a3749
ef818ff
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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()
|