diff --git a/llm-service/llm-service-api/src/main/java/com/knecon/fforesight/llm/service/QueueNames.java b/llm-service/llm-service-api/src/main/java/com/knecon/fforesight/llm/service/QueueNames.java index 423b640..ac56570 100644 --- a/llm-service/llm-service-api/src/main/java/com/knecon/fforesight/llm/service/QueueNames.java +++ b/llm-service/llm-service-api/src/main/java/com/knecon/fforesight/llm/service/QueueNames.java @@ -2,10 +2,10 @@ package com.knecon.fforesight.llm.service; public class QueueNames { - public static final String LLM_NER_REQUEST_QUEUE_PREFIX = "llm_entity_request_queue"; + public static final String LLM_NER_REQUEST_QUEUE_PREFIX = "llm_entity_request"; public static final String LLM_NER_REQUEST_EXCHANGE = "llm_entity_request_exchange"; - public static final String LLM_NER_RESPONSE_QUEUE_PREFIX = "llm_entity_response_queue"; + public static final String LLM_NER_RESPONSE_QUEUE_PREFIX = "llm_entity_response"; public static final String LLM_NER_RESPONSE_EXCHANGE = "llm_entity_response_exchange"; - public static final String LLM_NER_DLQ = "llm_entity_dlq"; + public static final String LLM_NER_DLQ = "llm_entity_error"; }