Update app.py
Browse files
app.py
CHANGED
|
@@ -36,8 +36,8 @@ iface = gr.Interface(
|
|
| 36 |
gr.Textbox(label="GitHub Repository URL (e.g., https://github.com/MicroHealthLLC/maiko-assistant.git)"),
|
| 37 |
gr.Textbox(label="GitHub Personal Access Token", type="password"),
|
| 38 |
gr.Textbox(label="Gemini API Key", type="password"),
|
| 39 |
-
gr.DateTime(label="Start Date"),
|
| 40 |
-
gr.DateTime(label="End Date")
|
| 41 |
],
|
| 42 |
outputs=gr.Textbox(label="Generated Release Notes"),
|
| 43 |
title="Automated Release Notes Generator",
|
|
|
|
| 36 |
gr.Textbox(label="GitHub Repository URL (e.g., https://github.com/MicroHealthLLC/maiko-assistant.git)"),
|
| 37 |
gr.Textbox(label="GitHub Personal Access Token", type="password"),
|
| 38 |
gr.Textbox(label="Gemini API Key", type="password"),
|
| 39 |
+
gr.DateTime(label="Start Date", title="Select Start Date", value=datetime.now().replace(hour=0, minute=0, second=0, microsecond=0)),
|
| 40 |
+
gr.DateTime(label="End Date", title="Select End Date", value=datetime.now())
|
| 41 |
],
|
| 42 |
outputs=gr.Textbox(label="Generated Release Notes"),
|
| 43 |
title="Automated Release Notes Generator",
|