feat: 完成第二版类型清理

This commit is contained in:
claude-code-best
2026-03-31 23:03:47 +08:00
parent 4c0a655a1c
commit d7a729ca68
604 changed files with 595 additions and 953 deletions

View File

@@ -80,7 +80,7 @@ Parse the user's input into ISO 8601 format. Return ONLY the formatted string, o
})
// Extract text from result
const parsedText = extractTextContent(result.message.content).trim()
const parsedText = extractTextContent(Array.isArray(result.message.content) ? result.message.content : []).trim()
// Validate that we got something usable
if (!parsedText || parsedText === 'INVALID') {