Skip to content

Commit

Permalink
3.0.1
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
github-actions committed Sep 24, 2023
1 parent c1e464a commit d2d4b66
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion myllm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Versioning
"""
__version__ = "3.0.0"
__version__ = "3.0.1"

from .config import settings
from .main import MyLLM
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT License"
Expand Down

0 comments on commit d2d4b66

Please sign in to comment.