Skip to content

Commit

Permalink
Merge pull request #118 from Cloud-Code-AI/117-bug-config-file-not-lo…
Browse files Browse the repository at this point in the history
…aded-properly

fix: updated provider code to fix the config bug
  • Loading branch information
sauravpanda authored May 19, 2024
2 parents 47a23f0 + 14376d9 commit d88f4dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kaizen/llms/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(
self.temperature = temperature
CONFIG_DATA = ConfigData()
self.config = CONFIG_DATA.get_config_data()
if CONFIG_DATA.get("language_model", {}).get(
if self.config.get("language_model", {}).get(
"enable_observability_logging", False
):
# set callbacks
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kaizen-cloudcode"
version = "0.1.7"
version = "0.1.8"
description = "An intelligent coding companion that accelerates your development workflow by providing efficient assistance, enabling you to craft high-quality code more rapidly."
authors = ["Saurav Panda <[email protected]>"]
license = "Apache2.0"
Expand Down

0 comments on commit d88f4dd

Please sign in to comment.