diff --git a/src/modules/llms/models-modal/LLMOptionsGlobal.tsx b/src/modules/llms/models-modal/LLMOptionsGlobal.tsx index c352308d9..37aebc44e 100644 --- a/src/modules/llms/models-modal/LLMOptionsGlobal.tsx +++ b/src/modules/llms/models-modal/LLMOptionsGlobal.tsx @@ -31,7 +31,6 @@ export function LLMOptionsGlobal(props: { llm: DLLM }) { return ( [], parameterOmitTemperature?: boolean, baselineParameters: DModelParameterValues, @@ -201,11 +200,6 @@ export function LLMParametersEditor(props: { return paramId in modelParamSpec && !modelParamSpec[paramId].hidden; } - /** discouraged: only used where we know a vendor supports a parameter on EACH model - and does NOT add the parameter Spec (dangerous) */ - function showAllParamsFromVendor(vendorId: ModelVendorId): boolean { - return props.vendorSpec === vendorId; - } - const temperatureHide = showParam('llmVndAntThinkingBudget'); const antThinkingOff = llmVndAntThinkingBudget === null; const gemThinkingAuto = llmVndGeminiThinkingBudget === undefined;