mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-18 22:30:40 -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.
55 lines
973 B
TypeScript
55 lines
973 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
export const $HealthResponse = {
|
|
description: `Response model for health check.`,
|
|
properties: {
|
|
status: {
|
|
type: 'string',
|
|
isRequired: true,
|
|
},
|
|
model_loaded: {
|
|
type: 'boolean',
|
|
isRequired: true,
|
|
},
|
|
model_downloaded: {
|
|
type: 'any-of',
|
|
contains: [
|
|
{
|
|
type: 'boolean',
|
|
},
|
|
{
|
|
type: 'null',
|
|
},
|
|
],
|
|
},
|
|
model_size: {
|
|
type: 'any-of',
|
|
contains: [
|
|
{
|
|
type: 'string',
|
|
},
|
|
{
|
|
type: 'null',
|
|
},
|
|
],
|
|
},
|
|
gpu_available: {
|
|
type: 'boolean',
|
|
isRequired: true,
|
|
},
|
|
vram_used_mb: {
|
|
type: 'any-of',
|
|
contains: [
|
|
{
|
|
type: 'number',
|
|
},
|
|
{
|
|
type: 'null',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
} as const;
|