Rewrite frontend as single self-contained HTML file — all CSS/JS inline, no external files to fail loading
This commit is contained in:
29
dist/cli/args.d.ts
vendored
Normal file
29
dist/cli/args.d.ts
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
export interface CLIArgs {
|
||||
_: (string | number)[];
|
||||
$0: string;
|
||||
video_file_path?: string;
|
||||
captureIntervalSeconds?: number;
|
||||
contextWindowSize?: number;
|
||||
visionProvider?: string;
|
||||
visionModel?: string;
|
||||
ttsProvider?: string;
|
||||
ttsModel?: string;
|
||||
ttsVoice?: string;
|
||||
ttsSpeedFactor?: number;
|
||||
ttsInstructions?: string;
|
||||
outputDir?: string;
|
||||
tempDir?: string;
|
||||
batchTimeMode?: boolean;
|
||||
batchWindowDuration?: number;
|
||||
framesInBatch?: number;
|
||||
defaultPrompt?: string;
|
||||
changePrompt?: string;
|
||||
batchPrompt?: string;
|
||||
estimate?: boolean;
|
||||
config?: string;
|
||||
saveConfig?: string;
|
||||
}
|
||||
/**
|
||||
* Parse command line arguments
|
||||
*/
|
||||
export declare function parseCommandLineArgs(): CLIArgs;
|
||||
Reference in New Issue
Block a user