diff --git a/tools/data/llms/llm-registry-sync.ts b/tools/data/llms/llm-registry-sync.ts index 3f20ac3ac..eaf509663 100644 --- a/tools/data/llms/llm-registry-sync.ts +++ b/tools/data/llms/llm-registry-sync.ts @@ -193,6 +193,7 @@ function saveChanges( model.interfaces ? JSON.stringify(model.interfaces) : null, model.description ?? null, model.benchmark?.cbaElo ?? null, + null, extractSimplePrice(model.chatPrice?.input), extractSimplePrice(model.chatPrice?.output), JSON.stringify(model), @@ -233,6 +234,7 @@ function saveChanges( model.interfaces ? JSON.stringify(model.interfaces) : null, model.description ?? null, model.benchmark?.cbaElo ?? null, + null, extractSimplePrice(model.chatPrice?.input), extractSimplePrice(model.chatPrice?.output), JSON.stringify(model), @@ -267,6 +269,7 @@ function saveChanges( model.interfaces ? JSON.stringify(model.interfaces) : null, model.description ?? null, model.benchmark?.cbaElo ?? null, + null, extractSimplePrice(model.chatPrice?.input), extractSimplePrice(model.chatPrice?.output), JSON.stringify(model), @@ -838,6 +841,7 @@ async function runSync( max_tokens: model.maxCompletionTokens, interfaces: model.interfaces, benchmark_elo: model.benchmark?.cbaElo, + benchmark_mmlu: undefined, price_input: extractSimplePrice(model.chatPrice?.input), price_output: extractSimplePrice(model.chatPrice?.output), })),