Hello everyone, I’m a beginner with n8n. I have installed a self-hosted version of n8n using npm on a Windows 10 system.
Additionally, I’ve deployed a text-to-speech service on port 4455 of the same system. The HTTP request format is as follows:
http://127.0.0.1:4455/playTextAsVoice?Text=hello
The HTTP response simply echoes back the text.
When the chatbot runs, everything works fine, but the final output is returned in JSON format, as demonstrated below(Please open the image in a new tab.):
I would like to know how to get the response in plain text format instead of JSON.
E.g:
Current Output: { “data”: “Hello! How can I assist you today?” }
I need Output: Hello! How can I assist you today?
Thanks in advance for any advice and help!
David