Skip to content

Commit 38df223

Browse files
committed
chore: update model list
1 parent 0381bc8 commit 38df223

File tree

7 files changed

+277
-69
lines changed

7 files changed

+277
-69
lines changed

app/client/api.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export interface LLMUsage {
4343
total: number;
4444
}
4545

46-
export interface LLMModel {
46+
export interface ModelRecord {
4747
name: string;
4848
display_name: string;
4949
provider?: string;
@@ -52,6 +52,10 @@ export interface LLMModel {
5252
context_length?: string;
5353
is_default?: boolean;
5454
family?: string;
55+
vram_required_MB?: number;
56+
buffer_size_required_bytes?: number;
57+
low_resource_required?: boolean;
58+
required_features?: string[];
5559
}
5660

5761
export abstract class LLMApi {

0 commit comments

Comments
 (0)