From ade19c7d4bd51c11c37503d099ef6ecdb5ab120a Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Wed, 4 Mar 2026 14:20:33 +0000 Subject: [PATCH] Fix invocation --- trustgraph-flow/trustgraph/tool_service/joke/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trustgraph-flow/trustgraph/tool_service/joke/service.py b/trustgraph-flow/trustgraph/tool_service/joke/service.py index a0adef66..e74f0790 100644 --- a/trustgraph-flow/trustgraph/tool_service/joke/service.py +++ b/trustgraph-flow/trustgraph/tool_service/joke/service.py @@ -147,7 +147,7 @@ class Processor(DynamicToolService): # Map topic to our categories if "program" in topic or "code" in topic or "computer" in topic or "software" in topic: category = "programming" - elif "animal" in topic or "dog" in topic or "cat" in topic or "bird" in topic: + elif "animal" in topic or "dog" in topic or "cat" in topic or "bird" in topic or "llama" in topic: category = "animals" elif "food" in topic or "eat" in topic or "cook" in topic or "drink" in topic: category = "food"