From d2d4b66efdbc518fec9abb46d9e8c73948846461 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 24 Sep 2023 19:52:04 +0000 Subject: [PATCH] 3.0.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ myllm/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 275de804..e1f9f838 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ +## v3.0.1 (2023-09-24) + +### :recycle: + +* :recycle: Refactor default_settings.toml and main.py + +The changes in this commit refactor the default_settings.toml and main.p +y files. The llm_enabled variable in default_settings.toml has been +rena +med to myllm_enabled. Additionally, the llm_model variable has been +remo +ved and replaced with llm_provider. The main.py file has been modified +t +o update the variable names accordingly. The get_myllm_help method has +b +een added to the MyLLM class to retrieve the help message for the +myllm +command. The debug log statement in the MyLLM class has been updated. ([`a5757d2`](https://github.com/mraniki/MyLLM/commit/a5757d2fb853d6e0a022929616f3d18a1253114d)) + +### Other + +* Merge pull request #110 from mraniki/dev + +:recycle: Refactor default_settings.toml and main.py ([`c1e464a`](https://github.com/mraniki/MyLLM/commit/c1e464a74da840bcdfd91b4d64d0c606c2ab040b)) + + ## v3.0.0 (2023-09-24) ### Other diff --git a/myllm/__init__.py b/myllm/__init__.py index 9e99ccbf..4baf5bc6 100644 --- a/myllm/__init__.py +++ b/myllm/__init__.py @@ -1,7 +1,7 @@ """ Versioning """ -__version__ = "3.0.0" +__version__ = "3.0.1" from .config import settings from .main import MyLLM diff --git a/pyproject.toml b/pyproject.toml index bcd8b09f..d8edd7ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "MyLLM" -version = "3.0.0" +version = "3.0.1" description = "A python package to interact with llm model supported by g4f and langchain." authors = ["mraniki <8766259+mraniki@users.noreply.github.com>"] license = "MIT License"