llama special case in joke demo

This commit is contained in:
Cyber MacGeddon 2026-03-04 14:27:02 +00:00
parent 73b7917d31
commit 672e62fdd0

View file

@ -164,7 +164,9 @@ class Processor(DynamicToolService):
# Map topic to our categories # Map topic to our categories
if "program" in topic or "code" in topic or "computer" in topic or "software" in topic: if "program" in topic or "code" in topic or "computer" in topic or "software" in topic:
category = "programming" category = "programming"
elif "animal" in topic or "dog" in topic or "cat" in topic or "bird" in topic or "llama" in topic: elif "llama" in topic:
category = "llama"
elif "animal" in topic or "dog" in topic or "cat" in topic or "bird" in topic:
category = "animals" category = "animals"
elif "food" in topic or "eat" in topic or "cook" in topic or "drink" in topic: elif "food" in topic or "eat" in topic or "cook" in topic or "drink" in topic:
category = "food" category = "food"