We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4adbae0 commit dc60525Copy full SHA for dc60525
1 file changed
apps/sim/tools/knowledge/create_document.ts
@@ -82,9 +82,6 @@ export const knowledgeCreateDocumentTool: ToolConfig<any, KnowledgeCreateDocumen
82
if (documentName.length > 255) {
83
throw new Error('Document name must be 255 characters or less')
84
}
85
- if (/[<>:"/\\|?*]/.test(documentName)) {
86
- throw new Error('Document name contains invalid characters. Avoid: < > : " / \\ | ? *')
87
- }
88
if (!textContent || textContent.length < 1) {
89
throw new Error('Document content cannot be empty')
90
0 commit comments