mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 05:55:13 +03:00
5eed1a05cb
added loaders and compatibility # Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
31 lines
1012 B
TypeScript
31 lines
1012 B
TypeScript
import { SupportedFileExtensionsWithDot } from "@/lib/types/SupportedFileExtensions";
|
|
|
|
export const acceptedFormats: Record<string, SupportedFileExtensionsWithDot[]> =
|
|
{
|
|
"text/plain": [".txt"],
|
|
"text/csv": [".csv"],
|
|
"text/markdown": [".md", ".markdown"],
|
|
"audio/x-m4a": [".m4a"],
|
|
"audio/mpeg": [".mp3", ".mpga", ".mpeg"],
|
|
"audio/webm": [".webm"],
|
|
"video/mp4": [".mp4"],
|
|
"audio/wav": [".wav"],
|
|
"application/pdf": [".pdf"],
|
|
"text/html": [".html"],
|
|
"text/telegram": [".telegram"],
|
|
|
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation":
|
|
[".pptx"],
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": [
|
|
".docx",
|
|
],
|
|
"application/vnd.oasis.opendocument.text": [".odt"],
|
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": [
|
|
".xlsx",
|
|
".xls",
|
|
],
|
|
"application/epub+zip": [".epub"],
|
|
"application/x-ipynb+json": [".ipynb"],
|
|
"text/x-python": [".py"],
|
|
};
|