Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,28 +1,16 @@
|
|
| 1 |
-
import pandas as pd
|
| 2 |
import gradio as gr
|
| 3 |
-
import os
|
| 4 |
|
| 5 |
llm_calc_app = gr.Blocks()
|
| 6 |
-
with llm_calc_app:
|
| 7 |
|
| 8 |
-
##################################################
|
| 9 |
with gr.Row():
|
|
|
|
|
|
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
####################################
|
| 14 |
-
## Language Select
|
| 15 |
-
with gr.Column():
|
| 16 |
-
|
| 17 |
-
with gr.Row():
|
| 18 |
-
start_date = gr.DateTime(
|
| 19 |
-
)
|
| 20 |
-
|
| 21 |
-
end_date = gr.DateTime(
|
| 22 |
-
)
|
| 23 |
|
| 24 |
|
| 25 |
llm_calc_app.load()
|
| 26 |
llm_calc_app.queue()
|
| 27 |
-
llm_calc_app.launch()
|
| 28 |
|
|
|
|
|
|
|
| 1 |
import gradio as gr
|
|
|
|
| 2 |
|
| 3 |
llm_calc_app = gr.Blocks()
|
| 4 |
+
with llm_calc_app:
|
| 5 |
|
|
|
|
| 6 |
with gr.Row():
|
| 7 |
+
start_date = gr.DateTime(
|
| 8 |
+
)
|
| 9 |
|
| 10 |
+
end_date = gr.DateTime(
|
| 11 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
|
| 14 |
llm_calc_app.load()
|
| 15 |
llm_calc_app.queue()
|
|
|
|
| 16 |
|