| 59 | } |
| 60 | |
| 61 | export interface Update extends Create { |
| 62 | /** |
| 63 | * The auto-scaling cluster can be manually turned "on" or "off" |
| 64 | * |
| 65 | * Turning "off" cluster will shut down all instances |
| 66 | */ |
| 67 | status?: "on" | "off"; |
| 68 | } |
| 69 | |
| 70 | export type ModelRunOutput<Stream extends boolean> = Stream extends true |
| 71 | ? NodeJS.ReadStream & ReadableStream<Uint8Array> |
nothing calls this directly
no outgoing calls
no test coverage detected