Merge branch 'queue-naming-convention' into 'main'

changed queue names according to convention

See merge request fforesight/llm-service!18
This commit is contained in:
Maverick Studer 2024-08-28 11:23:26 +02:00
commit ebbad56b7a

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