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
The issue you're encountering with the Doc Extractor not supporting markdown files seems to be related to the MIME type being incorrectly identified as application/octet-stream. The Doc Extractor does have specific handling for markdown files when the MIME type is correctly identified as text/markdown[1].
To resolve this, you might want to ensure that the file upload process correctly identifies the MIME type of markdown files. This could involve checking the file upload configuration or the environment where the file is being uploaded to ensure that markdown files are recognized with the correct MIME type. If the MIME type is not being set correctly, it might default to application/octet-stream, which is not supported by the Doc Extractor.
Self Checks
Dify version
0.10.1
Cloud or Self Hosted
Self Hosted (Docker), Self Hosted (Source)
Steps to reproduce
test1.md
✔️ Expected Behavior
Properly parse markdown files.
❌ Actual Behavior
Return
Run failed: Unsupported MIME type: application/octet-stream
The text was updated successfully, but these errors were encountered: