From 5318bda74ca82b597fa5796b4adc0daecadd94c6 Mon Sep 17 00:00:00 2001 From: Paillat Date: Wed, 2 Aug 2023 21:48:16 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(openaicaller.py):=20remove?= =?UTF-8?q?=20unnecessary=20blank=20line=20to=20improve=20code=20readabili?= =?UTF-8?q?ty?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/openaicaller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/openaicaller.py b/src/utils/openaicaller.py index ad98161..44b49ce 100644 --- a/src/utils/openaicaller.py +++ b/src/utils/openaicaller.py @@ -89,6 +89,7 @@ class openai_caller: async def nothing(x): return x + error_call = nothing if kwargs.get("model", "") in chat_models: return await self.chat_generate(error_call, **kwargs)