This commit is contained in:
Jamie Pine
2026-01-25 04:57:55 -08:00
parent db5ca1f2ee
commit eb9b5cf9bb
40 changed files with 1706 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* Response model for model status.
*/
export type ModelStatus = {
model_name: string;
display_name: string;
downloaded: boolean;
size_mb?: (number | null);
loaded?: boolean;
};