Spaces:
Runtime error
Runtime error
Add txt extension to DDUF
Browse files
src/lib/check-filename.ts
CHANGED
|
@@ -3,9 +3,10 @@ export function checkFilename(filename: string) {
|
|
| 3 |
!filename.endsWith('.safetensors') &&
|
| 4 |
!filename.endsWith('.json') &&
|
| 5 |
!filename.endsWith('.gguf') &&
|
|
|
|
| 6 |
!filename.endsWith('/')
|
| 7 |
) {
|
| 8 |
-
throw new Error('Files must have a .safetensors, .gguf or .json extension');
|
| 9 |
}
|
| 10 |
|
| 11 |
const split = filename.split('/');
|
|
|
|
| 3 |
!filename.endsWith('.safetensors') &&
|
| 4 |
!filename.endsWith('.json') &&
|
| 5 |
!filename.endsWith('.gguf') &&
|
| 6 |
+
!filename.endsWith('.txt') &&
|
| 7 |
!filename.endsWith('/')
|
| 8 |
) {
|
| 9 |
+
throw new Error('Files must have a .safetensors, .txt, .gguf or .json extension');
|
| 10 |
}
|
| 11 |
|
| 12 |
const split = filename.split('/');
|