Skip to content

Commit 47a23f0

Browse files
authored
Merge pull request #116 from Cloud-Code-AI/114-update-how-the-config-data-is-passed
114 update how the config data is passed
2 parents 3ea022c + 7b24ce6 commit 47a23f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kaizen/llms/provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def __init__(
2020
self.max_tokens = max_tokens
2121
self.temperature = temperature
2222
CONFIG_DATA = ConfigData()
23-
self.config = CONFIG_DATA
23+
self.config = CONFIG_DATA.get_config_data()
2424
if CONFIG_DATA.get("language_model", {}).get(
2525
"enable_observability_logging", False
2626
):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "kaizen-cloudcode"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
description = "An intelligent coding companion that accelerates your development workflow by providing efficient assistance, enabling you to craft high-quality code more rapidly."
55
authors = ["Saurav Panda <[email protected]>"]
66
license = "Apache2.0"

0 commit comments

Comments
 (0)