Fixed timezones with date time tool
All checks were successful
Publish Library / Build NPM Project (push) Successful in 57s
Publish Library / Tag Version (push) Successful in 8s

This commit is contained in:
2026-02-02 09:30:48 -05:00
parent 7b57a0ded1
commit d71a6be120
2 changed files with 3 additions and 3 deletions

View File

@@ -44,9 +44,9 @@ export const CliTool: AiTool = {
export const DateTimeTool: AiTool = {
name: 'get_datetime',
description: 'Get current date and time',
description: 'Get current UTC date / time',
args: {},
fn: async () => new Date().toISOString()
fn: async () => new Date().toUTCString()
}
export const ExecTool: AiTool = {