diff --git a/apps/sim/tools/knowledge/create_document.ts b/apps/sim/tools/knowledge/create_document.ts index cd38fccda7..6243a10488 100644 --- a/apps/sim/tools/knowledge/create_document.ts +++ b/apps/sim/tools/knowledge/create_document.ts @@ -82,9 +82,6 @@ export const knowledgeCreateDocumentTool: ToolConfig 255) { throw new Error('Document name must be 255 characters or less') } - if (/[<>:"/\\|?*]/.test(documentName)) { - throw new Error('Document name contains invalid characters. Avoid: < > : " / \\ | ? *') - } if (!textContent || textContent.length < 1) { throw new Error('Document content cannot be empty') }