Skip to content

Commit

Permalink
chore: update model list
Browse files Browse the repository at this point in the history
  • Loading branch information
Neet-Nestor committed Jun 6, 2024
1 parent 0381bc8 commit 83e96be
Show file tree
Hide file tree
Showing 7 changed files with 277 additions and 57 deletions.
6 changes: 5 additions & 1 deletion app/client/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export interface LLMUsage {
total: number;
}

export interface LLMModel {
export interface ModelRecord {
name: string;
display_name: string;
provider?: string;
Expand All @@ -52,6 +52,10 @@ export interface LLMModel {
context_length?: string;
is_default?: boolean;
family?: string;
vram_required_MB?: number;
buffer_size_required_bytes?: number;
low_resource_required?: boolean;
required_features?: string[];
}

export abstract class LLMApi {
Expand Down
Loading

0 comments on commit 83e96be

Please sign in to comment.