changed queue names according to convention

This commit is contained in:
maverickstuder 2024-08-28 11:19:54 +02:00
parent 381c0a7e4b
commit 262cc65127

View File

@ -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";
}