(name: string)
| 46 | export const models = [gpt35turbo, gpt4, gpt4turbo, gpt4ho, deepseekChat]; |
| 47 | |
| 48 | export const getModel = (name: string) => { |
| 49 | for (const model of models) { |
| 50 | if (model.name === name) { |
| 51 | return model; |
| 52 | } |
| 53 | } |
| 54 | return gpt35turbo; |
| 55 | }; |
no outgoing calls
no test coverage detected