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

Added support for async consumers in LLM MQ Connector #12

Merged
merged 1 commit into from
Dec 14, 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
3 changes: 3 additions & 0 deletions neon_llm_core/rmq.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ class NeonLLMMQConnector(MQConnector, ABC):
"""
Module for processing MQ requests to Fast Chat LLM
"""

async_consumers_enabled = True

def __init__(self):
self.service_name = f'neon_llm_{self.name}'

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
neon-mq-connector>=0.7.2a8
neon_utils[sentry]==1.11.1a5
ovos-config~=0.0.10
pydantic==2.6.3
Loading