From c35d7f1bc16386be957030e5c65cd2949b195db6 Mon Sep 17 00:00:00 2001 From: NeonBohdan <96498856+NeonBohdan@users.noreply.github.com> Date: Thu, 4 Apr 2024 18:00:46 +0300 Subject: [PATCH 1/4] neon_llm_core version bump (#17) --- requirements/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements.txt b/requirements/requirements.txt index dfb25a2..b90bf5e 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -1,5 +1,5 @@ # model openai[embeddings]~=0.27 # networking -neon_llm_core[chatbots]~=0.1.0,>=0.1.1a2 +neon_llm_core[chatbots]~=0.1.0,>=0.1.1a3 ovos-utils~=0.0.32 \ No newline at end of file From 2411b88a5429c4fd53986f0b93a6c12b1a0f9d9f Mon Sep 17 00:00:00 2001 From: NeonBohdan Date: Thu, 4 Apr 2024 15:01:03 +0000 Subject: [PATCH 2/4] Increment Version to 0.0.2a6 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index f338673..8f5256e 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "0.0.2a5" +__version__ = "0.0.2a6" From 8a1b891a04dc235dd99dee330b7e570408035c97 Mon Sep 17 00:00:00 2001 From: NeonKirill Date: Wed, 30 Oct 2024 20:38:46 +0100 Subject: [PATCH 3/4] injected logger dependency with sentry --- neon_llm_chatgpt/chatgpt.py | 2 +- requirements/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/neon_llm_chatgpt/chatgpt.py b/neon_llm_chatgpt/chatgpt.py index 21de273..1875c5d 100644 --- a/neon_llm_chatgpt/chatgpt.py +++ b/neon_llm_chatgpt/chatgpt.py @@ -29,7 +29,7 @@ from typing import List, Dict from neon_llm_core.llm import NeonLLM -from ovos_utils.log import LOG +from neon_utils.logger import LOG class ChatGPT(NeonLLM): diff --git a/requirements/requirements.txt b/requirements/requirements.txt index b90bf5e..5e8c4c1 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -2,4 +2,4 @@ openai[embeddings]~=0.27 # networking neon_llm_core[chatbots]~=0.1.0,>=0.1.1a3 -ovos-utils~=0.0.32 \ No newline at end of file +neon_utils[sentry]==1.11.1a5 \ No newline at end of file From d45d7d72a87a723fca5151f93f0b1026467089ba Mon Sep 17 00:00:00 2001 From: NeonKirill Date: Wed, 30 Oct 2024 19:52:20 +0000 Subject: [PATCH 4/4] Increment Version to 0.0.2a7 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 8f5256e..aa94929 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "0.0.2a6" +__version__ = "0.0.2a7"