Spaces:
Sleeping
Sleeping
Neelesh
commited on
Commit
·
f99419a
1
Parent(s):
4845e1d
add default value
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ with st.sidebar:
|
|
24 |
"Choose AI Provider", options=["Anthropic", "Google Gemini", "OpenAI"]
|
25 |
)
|
26 |
|
27 |
-
text = st.text_input("Enter datetime text eg. 2023-09-28T15:27:58Z")
|
28 |
|
29 |
if text:
|
30 |
prompt = (
|
|
|
24 |
"Choose AI Provider", options=["Anthropic", "Google Gemini", "OpenAI"]
|
25 |
)
|
26 |
|
27 |
+
text = st.text_input("Enter datetime text eg. 2023-09-28T15:27:58Z", value="2023-09-28T15:27:58Z")
|
28 |
|
29 |
if text:
|
30 |
prompt = (
|