mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-27 06:05:14 -07:00
- Added new Tauri plugins: @tauri-apps/plugin-process and @tauri-apps/plugin-updater to improve application capabilities. - Introduced UpdateStatus component to display update information in the UI. - Enhanced GenerationForm to include an optional instruct field for additional input. - Refactored various components for improved styling and responsiveness, including Sidebar, AudioPlayer, and ProfileCard. - Updated API models and schemas to accommodate new instruct parameter in generation requests and responses. - Improved documentation for autoupdater setup and usage.
16 lines
379 B
TypeScript
16 lines
379 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Response model for health check.
|
|
*/
|
|
export type HealthResponse = {
|
|
status: string;
|
|
model_loaded: boolean;
|
|
model_downloaded?: boolean | null;
|
|
model_size?: string | null;
|
|
gpu_available: boolean;
|
|
vram_used_mb?: number | null;
|
|
};
|