Skip to content

Commit c6700ea

Browse files
authored
Merge pull request #129 from BeastByteAI/copilot/remove-redundant-print-statement
Remove debug print statement and bump to v1.4.3
2 parents 8f1727a + d8abd08 commit c6700ea

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies = [
1111
"google-cloud-aiplatform[pipelines]>=1.27.0,<2.0.0"
1212
]
1313
name = "scikit-llm"
14-
version = "1.4.2"
14+
version = "1.4.3"
1515
authors = [
1616
{ name="Oleh Kostromin", email="kostromin97@gmail.com" },
1717
{ name="Iryna Kondrashchenko", email="iryna230520@gmail.com" },

skllm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '1.4.2'
1+
__version__ = '1.4.3'
22
__author__ = 'Iryna Kondrashchenko, Oleh Kostromin'

skllm/llm/gpt/clients/openai/completion.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,5 @@ def get_chat_completion(
4949
model_dict["response_format"] = {"type": "json_object"}
5050
if not model.startswith(("gpt-o", "gpt-5")):
5151
model_dict["temperature"] = 0.0
52-
print("Setting the temperature ", model_dict.get("temperature"))
5352
completion = client.chat.completions.create(messages=messages, **model_dict) # type: ignore
5453
return completion

0 commit comments

Comments
 (0)