solutions cleanup
frdel committed
Dec 7, 2024 at 23:28 UTC
a76a302f3f4e9fce9183aa0585595d6f18ae215a
1 file changed
-13
knowledge/default/solutions/get_current_time.md
deleted
-13
@@ -1,13 +0,0 @@
1
-# Problem
2
-User asked for current time in timezone
3
-# Solution
4
-Use code_execution_tool with following python code adjusted for your timezone
5
-~~~python
6
-from datetime import datetime
7
-import pytz
8
-
9
-timezone = pytz.timezone('America/New_York')
10
-current_time = datetime.now(timezone)
11
-
12
-print("Current time in New York:", current_time)
13
-~~~