diff --git a/pyproject.toml b/pyproject.toml index 1d7fd6d..e3dedc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "google-cloud-aiplatform[pipelines]>=1.27.0,<2.0.0" ] name = "scikit-llm" -version = "1.4.2" +version = "1.4.3" authors = [ { name="Oleh Kostromin", email="kostromin97@gmail.com" }, { name="Iryna Kondrashchenko", email="iryna230520@gmail.com" }, diff --git a/skllm/__init__.py b/skllm/__init__.py index 578d92c..7ef57e9 100644 --- a/skllm/__init__.py +++ b/skllm/__init__.py @@ -1,2 +1,2 @@ -__version__ = '1.4.2' +__version__ = '1.4.3' __author__ = 'Iryna Kondrashchenko, Oleh Kostromin' diff --git a/skllm/llm/gpt/clients/openai/completion.py b/skllm/llm/gpt/clients/openai/completion.py index 53f4e75..b75a57c 100644 --- a/skllm/llm/gpt/clients/openai/completion.py +++ b/skllm/llm/gpt/clients/openai/completion.py @@ -49,6 +49,5 @@ def get_chat_completion( model_dict["response_format"] = {"type": "json_object"} if not model.startswith(("gpt-o", "gpt-5")): model_dict["temperature"] = 0.0 - print("Setting the temperature ", model_dict.get("temperature")) completion = client.chat.completions.create(messages=messages, **model_dict) # type: ignore return completion