TestLLMCalc / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
79b19fb verified
raw
history blame
258 Bytes
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(ssr_mode=False)