mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
exclude tokenizer from list
This commit is contained in:
parent
eaf9980c9a
commit
b6c4e35fd8
@ -78,7 +78,7 @@ def get_available_models():
|
||||
for file in files:
|
||||
file_path = os.path.join(dirpath, file)
|
||||
relative_path = os.path.relpath(file_path, shared.args.model_dir)
|
||||
if not file.endswith(('.txt', '-np', '.pt', '.json', '.yaml', '.py')) and 'llama-tokenizer' not in file:
|
||||
if not file.endswith(('.txt', '-np', '.pt', '.json', '.yaml', '.py')) and 'llama-tokenizer' not in relative_path:
|
||||
model_list.append(relative_path)
|
||||
return ['None'] + sorted(model_list, key=natural_keys)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user