From b47a1bfbe6b9918ed0d832c53d543f35856440ae Mon Sep 17 00:00:00 2001 From: Pavlo Kulyk Date: Wed, 3 Jun 2026 11:04:12 +0300 Subject: [PATCH] fix: add types for quality --- types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types.ts b/types.ts index a785e06..ae62cd7 100644 --- a/types.ts +++ b/types.ts @@ -17,6 +17,7 @@ export interface AdapterOptions { * Check here for params https://platform.openai.com/docs/api-reference/images */ extraParams?: { + quality?: 'low' | 'medium' | 'high' | 'auto'; [key: string]: any; };