From fb4f7a59bdc13f1f816f9ead5fdcdd5a01c6479d Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Mon, 30 Oct 2023 21:28:11 +0000 Subject: [PATCH] Format Python code with psf/black push --- models/openai_model.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/models/openai_model.py b/models/openai_model.py index 1f050129..23b32fb0 100644 --- a/models/openai_model.py +++ b/models/openai_model.py @@ -834,7 +834,8 @@ async def send_summary_request(self, prompt, custom_api_key=None): # print(f"Payload -> {payload}") # Parse the total tokens used for this request and response pair from the response await self.valid_text_request( - response, model=self.model if self.model is not None else Models.GPT4_32 + response, + model=self.model if self.model is not None else Models.GPT4_32, ) print(f"Summary response -> {response}")