bluenevus commited on
Commit
6e386c0
·
verified ·
1 Parent(s): 80fc921

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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",