TestLLMCalc / app.py
Koshti10's picture
Update app.py
f4bce5b verified
raw
history blame
557 Bytes
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()