Browse Source

add system stats function

pull/1107/head
pythongosssss 1 year ago
parent
commit
43ae9fe721
  1. 9
      web/scripts/api.js

9
web/scripts/api.js

@ -264,6 +264,15 @@ class ComfyApi extends EventTarget {
}
}
/**
* Gets system & device stats
* @returns System stats such as python version, OS, per device info
*/
async getSystemStats() {
const res = await this.fetchApi("/system_stats");
return await res.json();
}
/**
* Sends a POST request to the API
* @param {*} type The endpoint to post to

Loading…
Cancel
Save