add provider_list
This commit is contained in:
11
js/src/llm/models/model.ts
Normal file
11
js/src/llm/models/model.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export interface ModelInfo {
|
||||
cost: {
|
||||
input: number;
|
||||
inputCached: number;
|
||||
output: number;
|
||||
outputCached: number;
|
||||
};
|
||||
contextWindow: number;
|
||||
maxTokens: number;
|
||||
attachment: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user