From 84146737b80873da3cd1cda228ee58dfa652040d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 21 Jan 2026 13:02:22 +0000 Subject: [PATCH 1/2] Initial plan From d8abd08cc4a50b54dce55250f50c025c05371155 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 21 Jan 2026 13:04:38 +0000 Subject: [PATCH 2/2] Remove redundant print statement and bump version to 1.4.3 Co-authored-by: OKUA1 <48349467+OKUA1@users.noreply.github.com> --- pyproject.toml | 2 +- skllm/__init__.py | 2 +- skllm/llm/gpt/clients/openai/completion.py | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) 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