(type)
| 377 | |
| 378 | def refresh_models(): |
| 379 | def make_refresh_call(type): |
| 380 | try: |
| 381 | webui_post(f"/sdapi/v1/refresh-{type}") |
| 382 | except: |
| 383 | pass |
| 384 | |
| 385 | try: |
| 386 | for type in ("checkpoints", "vae-and-text-encoders"): |
nothing calls this directly
no test coverage detected