| 5 | import * as path from 'path'; |
| 6 | |
| 7 | export interface ModelConfig { |
| 8 | model: string; |
| 9 | alias?: string; |
| 10 | endpoint?: string; |
| 11 | token?: string; |
| 12 | default?: boolean; |
| 13 | task?: string; |
| 14 | // request per second |
| 15 | rps?: number; |
| 16 | } |
| 17 | |
| 18 | export interface AppConfig { |
| 19 | chat: ModelConfig[]; |
nothing calls this directly
no outgoing calls
no test coverage detected