diff --git a/src/ts/model/modellist.ts b/src/ts/model/modellist.ts index 96dd5a58..5d94cc1a 100644 --- a/src/ts/model/modellist.ts +++ b/src/ts/model/modellist.ts @@ -979,14 +979,9 @@ for(let model of LLMModels){ export function getModelInfo(id: string): LLMModel{ - const found:LLMModel = LLMModels.find(model => model.id === id) ?? { - id, - name: id, - provider: LLMProvider.AsIs, - format: LLMFormat.OpenAICompatible, - flags: [], - parameters: OpenAIParameters - } + const found:LLMModel = LLMModels.find(model => model.id === id) + + console.log('found', found) if(found) return found