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:
@@ -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"> & {
|
||||
|
||||
Reference in New Issue
Block a user