NeurochainAI Telegram Bot Integration with n8n: Automated AI Responses & Image Generation

Discover how to use n8n to connect NeurochainAI with Telegram for automated AI text responses and image generation. This bot workflow saves time by instantly processing prompts and delivering AI-generated content directly in chat.
telegramTrigger
code
httpRequest
+3
Workflow Identifier: 2331
NODES in Use: Telegram Trigger, Code, HTTP Request, Telegram, Switch, Sticky Note

Press CTRL+F5 if the workflow didn't load.

Learn how to Build this Workflow with AI:

Visit through Desktop for Best experience

What This Workflow Does

This workflow connects a Telegram bot with NeurochainAI to handle text and image requests automatically.
It solves the problem of slow, manual prompt sending to AI models.
Users send commands in Telegram, and the bot replies with AI answers or images fast.
This saves time and stops errors when sharing AI content in chats.


Who Should Use This Workflow

This is good for digital content creators, community managers, or anyone who wants fast AI replies inside Telegram.
No coding needed, just basic setup in n8n.


Tools and Services Used

  • Telegram Bot API: Receives user messages.
  • NeurochainAI API: Provides text and image generation AI.
  • n8n Automation Platform: Runs the workflow controlling message flow.

How the Workflow Works (Input → Process → Output)

Input

  • User sends a message in Telegram to the bot.
  • The message either starts with “/flux” for images or mentions the bot for text.

Processing Steps

  • Telegram Trigger node detects any incoming messages.
  • Switch node checks if message wants image or text.
  • Code node cleans the prompt by removing “/flux” prefix.
  • Telegram node sends typing or loading action so user knows the bot is working.
  • HTTP Request nodes call NeurochainAI API with correct parameters for text or image.
  • Response is parsed: text replies stay as message text; image URLs are extracted from JSON.
  • Telegram nodes send reply messages or photos in chat.
  • Error handling detects short prompts or failed API calls and sends error messages to users.

Output

  • Users get quick AI-generated text replies directly in Telegram.
  • Users get AI-generated images sent as photos with captions.
  • Errors or status messages keep the chat clean and clear.

Beginner Step-by-Step: How to Use This Workflow in n8n

1. Import Workflow Into n8n

  1. Download the workflow file by clicking the “Download” button on this page.
  2. Open your n8n editor.
  3. Use “Import from File” to load the downloaded workflow.

2. Configure Credentials and API Keys

  1. Add your Telegram Bot API token in all Telegram nodes’ credentials.
  2. Add your NeurochainAI API Key in the HTTP Request nodes headers.
  3. Update any IDs such as chat IDs, emails, or other fields if the workflow uses them.

3. Check and Copy Code Snippets

  1. Check the Code nodes for prompt cleaning or image URL extraction.
  2. These scripts are ready, just ensure API keys and variables are set properly.

4. Test the Workflow

  1. Send test messages to your Telegram bot using “/flux” for images or bot mentions for text.
  2. Watch the n8n execution panel to see if the workflow runs without errors.

5. Activate for Production

  1. When satisfied, toggle the workflow to “Active” to run automatically.
  2. It will run on all new Telegram messages without manual steps.

If self hosting n8n, check self-host n8n options to run continuously.


Inputs and Outputs Detailed

Inputs

  • User text messages with the command prefix or bot mention.

Processing

  • Detect command type with Switch node.
  • Clean prompt using JavaScript in Code node.
  • Show typing status with Telegram message action.
  • Send prompt to NeurochainAI via HTTP Request.
  • Parse AI response, extract text or image URL.

Outputs

  • Telegram text reply containing AI-generated message.
  • Telegram photo message showing AI-generated image.
  • Error messages if input invalid or request failed.

Error and Edge Case Handling

  • If prompt after cleaning is too short – user gets a “prompt too short” error message.
  • If NeurochainAI returns no answer – workflow sends “No response from worker” message.
  • If API keys are invalid – error shows so user can check credentials.
  • If Telegram messages fail – user is notified to verify Telegram Bot API token.

Customization Ideas

  • Change AI model names in HTTP requests to try different NeurochainAI models.
  • Adjust image size or quality in image generation JSON.
  • Add new commands in Switch node to handle extra features.
  • Edit Telegram reply texts to include emojis, markdown, or buttons.

Sample Code Used in Workflow

The Code node cleaning prompts removes the “/flux” prefix with this script:

// Acessa a mensagem original que está em $json.message.text
const userMessage = $json.message.text;

// Remover o prefixo '/flux' e qualquer espaço extra após o comando
const cleanMessage = userMessage.replace(/^\/flux\s*/, '');

// Retornar a mensagem limpa
return {
 json: {
 cleanMessage: cleanMessage
 }
};

This removes the command part and trims spaces, making a clean prompt for AI.

To extract image URLs returned in JSON form, this code is used:

// O valor vem como um array com uma string, então precisamos pegar o primeiro item do array
const rawUrl = $json.choices[0].text;

// Remover colchetes e aspas (se existirem) e pegar o primeiro elemento do array
const imageUrl = JSON.parse(rawUrl)[0];

return {
 json: {
 imageUrl: imageUrl
 }
};

Summary

✓ The workflow makes Telegram bots reply with AI text or images automatically.
✓ It handles user prompts, cleans commands, and gives fast answers.
✓ Works with minimal setup in n8n using Telegram and NeurochainAI APIs.
✓ Saves time and avoids manual errors during content creation.
✓ Customizable to change AI models, commands, or message style.
→ Automates AI content workflows inside Telegram chats without coding.
→ Provides easy ways to test and activate the bot in production.


Frequently Asked Questions

You need a Telegram Bot API Key from BotFather and a NeurochainAI API Key for text and image generation.
A Switch node checks if the message starts with ‘/flux’ for image requests or mentions the bot for text replies.
The user should enter a longer prompt after the command prefix or refine their input to avoid sending empty messages.
Yes, the workflow can run on a self-hosted n8n instance. Useful links for self-host n8n are included in the guide.

Promoted by BULDRR AI

Related Workflows

Automate Viral UGC Video Creation Using n8n + Degaus (Beginner-Friendly Guide)

Learn how to automate viral UGC video creation using n8n, AI prompts, and Degaus. This beginner-friendly guide shows how to import, configure, and run the workflow without technical complexity.
Form Trigger
Google Sheets
Gmail
+37
Free

AI SEO Blog Writer Automation Workflows in n8n

A complete beginner guide to building an AI SEO blog writer automation using n8n.
AI Agent
Google Sheets
httpRequest
+5
Free

Automate CrowdStrike Alerts with VirusTotal, Jira & Slack

This workflow automates processing of CrowdStrike detections by enriching threat data via VirusTotal, creating Jira tickets for incident tracking, and notifying teams on Slack for quick response. Save hours daily by transforming complex threat data into actionable alerts effortlessly.
scheduleTrigger
httpRequest
jira
+5
Free

Automate Telegram Invoices to Notion with AI Summaries & Reports

Save hours on financial tracking by automating invoice extraction from Telegram photos to Notion using Google Gemini AI. This workflow extracts data, records transactions, and generates detailed spending reports with charts sent on schedule via Telegram.
lmChatGoogleGemini
telegramTrigger
notion
+9
Free

Automate Email Replies with n8n and AI-Powered Summarization

Save hours managing your inbox with this n8n workflow that uses IMAP email triggers, AI summarization, and vector search to draft concise replies requiring minimal review. Automate business email processing efficiently with AI guidance and Gmail integration.
emailReadImap
vectorStoreQdrant
emailSend
+12
Free

Automate Email Campaigns Using n8n with Gmail & Google Sheets

This n8n workflow automates personalized email outreach campaigns by integrating Gmail and Google Sheets, saving hours of manual follow-up work and reducing errors in email sequences. It ensures timely follow-ups based on previous email interactions, optimizing communication efficiency.
googleSheets
gmail
code
+5
Free