searchgpt / src /utils /time.py
hadadrjt's picture
SearchGPT: Allow LLM to access local time.
29dc222
raw
history blame
302 Bytes
#
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
from datetime import datetime
from zoneinfo import ZoneInfo
def get_current_time() -> str:
return datetime.now(ZoneInfo(
"Asia/Jakarta"
)).strftime(
"%H:%M %Z. %A, %d %B %Y."
)