Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

injected dependency with sentry #7

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading