From 684e07e2dfa7d5f9c845197b757d77399ccef335 Mon Sep 17 00:00:00 2001 From: Carlos-Mesquita Date: Sun, 10 Nov 2024 06:51:24 +0000 Subject: [PATCH] Imports and a print --- app/services/impl/third_parties/openai.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/services/impl/third_parties/openai.py b/app/services/impl/third_parties/openai.py index 573cd48..e4ae820 100644 --- a/app/services/impl/third_parties/openai.py +++ b/app/services/impl/third_parties/openai.py @@ -3,8 +3,6 @@ import re import logging from typing import List, Optional, Callable, TypeVar -from numba.core.transforms import consolidate_multi_exit_withs -from numba.cuda import const from openai import AsyncOpenAI from openai.types.chat import ChatCompletionMessageParam @@ -76,7 +74,6 @@ class OpenAI(ILLMService): return await self._prediction( model, messages, token_count, fields_to_check, temperature, (try_count + 1), check_blacklisted ) - print(result) return json.loads(result) async def prediction_override(self, **kwargs):