hi all,
I am new in n8n, Can any body help me ?
When I use chat message as trigger and then send “hi” message , for every time, it will reply me the Quoted {“…”, “…”}, I found that when I add “Edit Fields” node , It will output me this kind of format pattern.
However, when I remove the edit fields node, then I send “hi” message again, I will reply me a pure LLM replied message. NO such format pattern {“…”,”…”"}.
Can any body tell me how to make this chatmessage reply correctly? I want a normal conversation. 
Hey There,
You don’t need to send anything chat trigger automatically show proper message. Please remove edit fields.
Thanks.
actually, my operation is to use the edit field to modify the data and then save the chat message & llm result to google sheet.
But I found the reply includes the chat question, LLM reply in chat message with such pattern what I don’t want. I want the chat result to show in the chat message.
Right now you have set the Response Mode of the Trigger to “When last node finishes” which is an issue, since your last node returns more than just the message.
Make sure that you either:
-
Set the response mode in the Trigger to “Using response nodes” and add a “Respond to Chat” Node between AI Agent and Edit Fields
-
Set the response mode to “Streaming” in the Trigger and in the AI Agent (only available when the Chat is publicly available)
-
Set a “Edit Fields” Node at the very end and have response mode in the trigger set to “When last node finishes” → The Edit fields node must only output one string named “output” with the AI Agents response as value.