You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chore/Enhance file upload functionality in createAttachment (#5280)
Enhance file upload functionality in createAttachment
- Added support for configurable allowed file types and file upload status in createFileAttachment.
- Implemented validation to ensure uploaded files match allowed types, throwing errors for disallowed types.
Copy file name to clipboardExpand all lines: packages/ui/src/ui-component/extended/FileUpload.jsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ import useNotifier from '@/utils/useNotifier'
18
18
// API
19
19
importchatflowsApifrom'@/api/chatflows'
20
20
21
-
constmessage=`Uploaded files will be parsed as strings and sent to the LLM. If file upload is enabled on the Vector Store as well, this will override and take precedence.
21
+
constmessage=`The full contents of uploaded files will be converted to text and sent to the Agent.
22
22
<br />
23
23
Refer <a href='https://docs.flowiseai.com/using-flowise/uploads#files' target='_blank'>docs</a> for more details.`
0 commit comments