simplify(llm): remove redundant queryParams from OpenAICompatibleChatModelInput

queryParams is now inherited from ModelInput (via ModelRef) after the
typed-field promotion. The explicit re-declaration was dead weight.
This commit is contained in:
Kit Langton
2026-04-28 19:51:06 -04:00
parent 61a18bdbd0
commit bb859e2e2c
@@ -11,7 +11,6 @@ export type OpenAICompatibleChatModelInput = Omit<ModelInput, "protocol" | "head
readonly baseURL: string
readonly apiKey?: string
readonly headers?: Record<string, string>
readonly queryParams?: Record<string, string>
}
export type ProviderFamilyModelInput = Omit<OpenAICompatibleChatModelInput, "provider" | "baseURL"> & {