blob: e78dbb87f6397468457fb34edce0800da309d623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
export interface ModelInfo {
cost: {
input: number;
inputCached: number;
output: number;
outputCached: number;
};
contextWindow: number;
maxTokens: number;
attachment: boolean;
}
|