Fixing service wiring

This commit is contained in:
Cyber MacGeddon 2026-03-04 14:12:11 +00:00
parent 3d61ecd060
commit a625efb94b
4 changed files with 124 additions and 21 deletions

View file

@ -54,8 +54,8 @@ class DynamicToolService(AsyncProcessor):
topic = params.get("topic", default_topic)
# Build direct Pulsar topic paths
request_topic = f"non-persistent://tg/request/{topic}-request"
response_topic = f"non-persistent://tg/response/{topic}-response"
request_topic = f"non-persistent://tg/request/{topic}"
response_topic = f"non-persistent://tg/response/{topic}"
logger.info(f"Tool service topics: request={request_topic}, response={response_topic}")