Help with Table answers
# 🤝help
f
Hello, I'm using a Table to list questions and their associated answers (one column for the question and another for the answer). I want my chatbot to simply give the answer associated with the question but each time it reformulates it and the answer loses relevance. How can I prevent the bot from not rephrasing and giving the raw answer I've already written in the Table?
q
If you are using Personality Agent try disabling that. If that was the issue and you still want to keep Personality Agent most of the time, you can disable it in specific nodes. This will show the user the results of KB queries without any rewriting.
f
I think it's related to the summary agent because I don't use personality agent, but when I disable summary agent, the bot is not able to answer anymore
q
Have you tried to store the raw answer to a variable, and display that to the user in Text card?
f
but how do I get the raw answer ?
q
{{turn.KnowledgeAgent.answer}}
Try if that works, if not, let's try everything else until it works 🛠️
another idea: {{event.kb.results.map((a) => a.dsFriendlyName + "\n" + a.content).join("\n\n")}}
for raw answers

https://www.youtube.com/watch?v=z4dLcUfF8d0

f
ok thanks, I will try everything