mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 07:05:43 -03:00
Reduce default delay in model processing from 0.2 to 0.1 seconds for improved responsiveness.
This commit is contained in:
@@ -166,7 +166,7 @@ class MiscRoutes:
|
|||||||
output_dir = data.get('output_dir')
|
output_dir = data.get('output_dir')
|
||||||
optimize = data.get('optimize', True)
|
optimize = data.get('optimize', True)
|
||||||
model_types = data.get('model_types', ['lora', 'checkpoint'])
|
model_types = data.get('model_types', ['lora', 'checkpoint'])
|
||||||
delay = float(data.get('delay', 0.2))
|
delay = float(data.get('delay', 0.1)) # Default to 0.1 seconds
|
||||||
|
|
||||||
if not output_dir:
|
if not output_dir:
|
||||||
return web.json_response({
|
return web.json_response({
|
||||||
|
|||||||
Reference in New Issue
Block a user