From 1057db6fc9a9de82c92edee14cbafaa10b2d60b2 Mon Sep 17 00:00:00 2001 From: Benjoyo Date: Thu, 15 Feb 2024 16:42:35 +0100 Subject: [PATCH] Core 1.1.4 --- bpm-ai-core/bpm_ai_core/llm/openai_chat.py | 1 + bpm-ai-core/bpm_ai_core/speech_recognition/openai_whisper.py | 1 + bpm-ai-core/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bpm-ai-core/bpm_ai_core/llm/openai_chat.py b/bpm-ai-core/bpm_ai_core/llm/openai_chat.py index eb4b66b..8cfbe38 100644 --- a/bpm-ai-core/bpm_ai_core/llm/openai_chat.py +++ b/bpm-ai-core/bpm_ai_core/llm/openai_chat.py @@ -1,5 +1,6 @@ import json from typing import Dict, Any, Optional, List +import logging from bpm_ai_core.llm.common.llm import LLM from bpm_ai_core.llm.common.message import ChatMessage, ToolCallsMessage, SingleToolCallMessage diff --git a/bpm-ai-core/bpm_ai_core/speech_recognition/openai_whisper.py b/bpm-ai-core/bpm_ai_core/speech_recognition/openai_whisper.py index 7ec8361..0659b54 100644 --- a/bpm-ai-core/bpm_ai_core/speech_recognition/openai_whisper.py +++ b/bpm-ai-core/bpm_ai_core/speech_recognition/openai_whisper.py @@ -1,5 +1,6 @@ import io from typing import Optional, Dict, Any, Union +import logging from bpm_ai_core.speech_recognition.asr import ASRModel from bpm_ai_core.util.audio import load_audio diff --git a/bpm-ai-core/pyproject.toml b/bpm-ai-core/pyproject.toml index aeab7d2..5762ecf 100644 --- a/bpm-ai-core/pyproject.toml +++ b/bpm-ai-core/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpm-ai-core" -version = "1.1.2" +version = "1.1.4" description = "Core AI abstractions and helpers." authors = ["Bennet Krause "] repository = "https://github.com/holunda-io/bpm-ai"