Skip to content

Commit

Permalink
Merge pull request #7 from NeonGeckoCom/feature/sentry_integration
Browse files Browse the repository at this point in the history
injected dependency with sentry
  • Loading branch information
NeonKirill authored Oct 30, 2024
2 parents 452a03b + 53fd083 commit bd22306
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion neon_llm_core/chatbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from typing import List
from chatbot_core.v2 import ChatBot
from neon_mq_connector.utils.client_utils import send_mq_request
from ovos_utils.log import LOG
from neon_utils.logger import LOG

from neon_llm_core.utils.config import LLMMQConfig

Expand Down
2 changes: 1 addition & 1 deletion neon_llm_core/rmq.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

from neon_mq_connector.connector import MQConnector
from neon_mq_connector.utils.rabbit_utils import create_mq_callback
from ovos_utils.log import LOG
from neon_utils.logger import LOG

from neon_llm_core.utils.config import load_config
from neon_llm_core.llm import NeonLLM
Expand Down
2 changes: 1 addition & 1 deletion neon_llm_core/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from typing import Union

from neon_utils.log_utils import init_log
from ovos_utils.log import LOG
from neon_utils.logger import LOG
from ovos_config.config import Configuration

from neon_llm_core.utils.constants import LLM_VHOST
Expand Down
2 changes: 1 addition & 1 deletion neon_llm_core/utils/personas/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

from neon_mq_connector.utils import RepeatingTimer
from neon_mq_connector.utils.client_utils import send_mq_request
from ovos_utils.log import LOG
from neon_utils.logger import LOG

from neon_llm_core.utils.constants import LLM_VHOST
from neon_llm_core.utils.personas.models import PersonaModel
Expand Down
2 changes: 1 addition & 1 deletion neon_llm_core/utils/personas/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import time
from typing import Dict, Union, List

from ovos_utils import LOG
from neon_utils.logger import LOG

from neon_llm_core.chatbot import LLMBot
from neon_llm_core.utils.personas.models import PersonaModel
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# networking
neon-mq-connector>=0.7.2a1
ovos-utils~=0.0.32
neon_utils[sentry]==1.11.1a5
ovos-config~=0.0.10
pydantic==2.6.3

0 comments on commit bd22306

Please sign in to comment.