jchen8000 commited on
Commit
6d6bd3a
·
1 Parent(s): f85ec63

load models at start

Browse files
Files changed (1) hide show
  1. one_click.py +2 -0
one_click.py CHANGED
@@ -419,6 +419,8 @@ def update_requirements(initial_installation=False, pull=True):
419
 
420
 
421
  def launch_webui():
 
 
422
  run_cmd(f"python server.py {flags}", environment=True)
423
 
424
 
 
419
 
420
 
421
  def launch_webui():
422
+ run_cmd(f"python download-model.py mistralai/Mistral-7B-Instruct-v0.3", environment=True)
423
+ run_cmd(f"python download-model.py google/flan-t5-xl", environment=True)
424
  run_cmd(f"python server.py {flags}", environment=True)
425
 
426