Update tools/get_runtime_context.py
Browse files
tools/get_runtime_context.py
CHANGED
|
@@ -9,7 +9,7 @@ class GetRuntimeContextTool(Tool):
|
|
| 9 |
inputs = {}
|
| 10 |
output_type = "string"
|
| 11 |
|
| 12 |
-
def forward(self)
|
| 13 |
info = {
|
| 14 |
"datetime_utc":datetime.now(timezone.utc).isoformat(),
|
| 15 |
"platform": platform.system(),
|
|
|
|
| 9 |
inputs = {}
|
| 10 |
output_type = "string"
|
| 11 |
|
| 12 |
+
def forward(self) -> str:
|
| 13 |
info = {
|
| 14 |
"datetime_utc":datetime.now(timezone.utc).isoformat(),
|
| 15 |
"platform": platform.system(),
|