()
| 21 | let cached_object_info: any = null; |
| 22 | |
| 23 | async function updateObjectInfo() { |
| 24 | const res = await fetch('http://127.0.0.1:8188/object_info') |
| 25 | const data = await res.json(); |
| 26 | cached_object_info = data |
| 27 | return data |
| 28 | } |
| 29 | |
| 30 | comfyuiService.comfyUIStartedSuccessEvent.on(async () => { |
| 31 | try { |
no outgoing calls
no test coverage detected