Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -3
src/streamlit_app.py
CHANGED
|
@@ -429,9 +429,9 @@ st.stop()
|
|
| 429 |
client = Groq(api_key=groq_api_key)
|
| 430 |
|
| 431 |
def get_current_datetime():
|
| 432 |
-
tz = pytz.timezone('Asia/Seoul')
|
| 433 |
-
now = datetime.now(tz)
|
| 434 |
-
return f"""Current Information:
|
| 435 |
- Date: {now.strftime('%B %d, %Y')}
|
| 436 |
- Time: {now.strftime('%I:%M %p')}
|
| 437 |
- Day: {now.strftime('%A')}
|
|
|
|
| 429 |
client = Groq(api_key=groq_api_key)
|
| 430 |
|
| 431 |
def get_current_datetime():
|
| 432 |
+
tz = pytz.timezone('Asia/Seoul')
|
| 433 |
+
now = datetime.now(tz)
|
| 434 |
+
return f"""Current Information:
|
| 435 |
- Date: {now.strftime('%B %d, %Y')}
|
| 436 |
- Time: {now.strftime('%I:%M %p')}
|
| 437 |
- Day: {now.strftime('%A')}
|