coyotte508 HF staff commited on
Commit
5ce247d
1 Parent(s): 602ce48

Add txt extension to DDUF

Browse files
Files changed (1) hide show
  1. src/lib/check-filename.ts +2 -1
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('/');