pull/658/head
Travis Fischer 2024-08-07 06:02:01 -05:00
rodzic f2169f1011
commit b0c6842ee6
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -168,8 +168,8 @@ export interface ResponseFormatJSONSchema {
*/ */
export type RelaxedChatParams = Simplify< export type RelaxedChatParams = Simplify<
Omit<ChatParams, 'messages' | 'response_format'> & { Omit<ChatParams, 'messages' | 'response_format'> & {
messages: object[] messages: any[]
response_format?: { type: 'text' | 'json_object' | string } response_format?: any
} }
> >