AI Workflows
Artificial Intelligence tools and workflows
Automate Daily Photo Background Removal with Photoroom and Google Drive
This n8n workflow automates the process of removing backgrounds from images stored in Google Drive using the Photoroom API. It organizes the processed and original images into separate folders, streamlining image management for digital marketing and event organization.
n8n$9.99Automate AI Grant Scraping and Eligibility Assessment
This n8n workflow automates the process of scraping AI grants from grants.gov, assesses their eligibility using AI, and sends email alerts for relevant opportunities.
n8n$14.99Automate Text-to-Speech Conversion with OpenAI and Webhook
This workflow automates the conversion of text inputs into audio using OpenAI's API, triggered by a webhook, and returns the audio output via a webhook response.
n8n$4.99Automate High-Quality Audio Generation with Voxtral Model via Replicate API
This n8n workflow automates the generation of high-quality audio using the Voxtral Small 24B 2507 model from Replicate. It manages API authentication, prediction creation, status polling, and result processing to deliver structured audio outputs.
n8n$9.99Create a Multi-functional AI Telegram Bot with PDF Search and Google Suite Automation
Build a comprehensive AI-powered assistant on Telegram that integrates voice interactions, PDF document search, and Google Suite automation. Ideal for beginners exploring advanced AI capabilities.
n8n$19.99Create an Intelligent Telegram Bot with NVIDIA AI and Conversation Memory
Set up a sophisticated Telegram bot that utilizes NVIDIA's AI model for contextual responses and maintains conversation history. This workflow allows seamless integration with various AI providers, enhancing the bot's adaptability and functionality.
n8n$14.99Automated WhatsApp Nutrition Consultant with AI
Transform WhatsApp into a 24/7 nutrition consultant using AI for meal analysis and personalized dietary advice.
n8n$14.99Extract Product Info from Website Screenshots with Dumpling AI + Sheets
### What this workflow does This workflow extracts product details—like name, price, discount, and rating—from website screenshots using Dumpling AI. It starts when a new product page URL is added to a Google Sheet, captures a screenshot of that page, extracts visible product info from the image, and writes the results back into the sheet. ### What problem is this workflow solving? Many product pages block traditional scraping tools or use unstructured layouts. This workflow bypasses HTML limitations by using visual AI extraction, making it reliable even when content is embedded in images or hard to parse with code. ### Who is this for? This is ideal for eCommerce researchers, pricing analysts, marketers, or anyone building a product database from websites without needing to code or maintain complex scrapers. ### Setup 1. Create a Google Sheet with a column named **Site** (or update the trigger). 2. Add your product page URLs in this column—one per row. 3. Connect your Google Sheets and Dumpling AI credentials in n8n. 4. Ensure your Dumpling AI account has API access for screenshots and extraction. ### How to customize the workflow - **Prompt adjustment**: In the “Extract Text from Screenshot” node, you can modify the prompt to extract other information like brand name, delivery time, or availability. - **Add more fields**: After the extraction, edit the “Format Extracted Data” node to map additional fields from the response to your Google Sheet columns. - **Change output destination**: You can easily replace the Google Sheets module with Airtable, Notion, or another app if preferred. > This works best when the product data is clearly visible in the screenshot. > It won't extract info that's hidden behind popups or loaded via user interaction.
n8n$4.99Automate Google Drive Document Summarization with AI
This workflow automates the process of downloading, parsing, and summarizing documents from Google Drive using AI, ideal for efficient document processing.
n8n$4.99Automate AI Content Generation with Replicate's 2Ndmoises_Generator
This n8n workflow leverages the Replicate API to automate content generation using the moicarmonas/2ndmoises_generator model. It manages authentication, initiates predictions, monitors progress, and processes results efficiently.
n8n$9.99Automate Multi-Language Blog Translation with GPT-4 and Markdown
This workflow translates blog content into multiple languages using OpenAI's GPT-4 within n8n, outputting the results in Markdown format. Ideal for content creators and marketers aiming to localize blogs efficiently.
n8n$9.99Automate Meeting Insights with VEXA, OpenAI, and Mem0
Streamline your meeting management by automating transcription, analysis, and memory storage using VEXA, OpenAI, and Mem0. This workflow ensures that you capture key insights and action items without manual effort.
n8n$14.99Automate Website Content Extraction and Storage with Gemini and Pinecone
Efficiently extract and store website content as vector embeddings in Pinecone using Google Gemini, creating a robust knowledge base for chatbots, search indexes, or internal tools.
n8n$14.99Automate PDF Extraction and Summarization with Google Sheets and Discord
Automatically extract PDFs from a website, summarize them using AI, and send the summaries to a Discord channel while tracking processed URLs in Google Sheets.
n8n$14.99Google Drive to Pinecone Vector Storage Workflow
# Document Chat Bot with Automated RAG System This workflow creates a conversational assistant that can answer questions based on your Google Drive documents. It automatically processes various file types and uses Retrieval-Augmented Generation (RAG) to provide accurate answers based on your document content. ## How It Works 1. **Monitors Google Drive for New Documents**: Automatically detects when files are created or updated in designated folders. 2. **Processes Multiple File Types**: Handles PDFs, Excel spreadsheets, and Google Docs. 3. **Builds a Knowledge Base**: Converts documents into searchable vector embeddings stored in Supabase. 4. **Provides Chat Interface**: Users can ask questions about their documents through a web interface. 5. **Retrieves Relevant Information**: Uses advanced RAG techniques to find and present the most relevant information. ## Setup Steps (Estimated time: 25-30 minutes) 1. **API Credentials**: Connect your OpenAI API key for text processing and embeddings. 2. **Google Drive Integration**: Set up Google Drive triggers to monitor specific folders. 3. **Supabase Configuration**: Configure Supabase vector database for document storage. 4. **Chat Interface Setup**: Deploy the web-based chat interface using the provided webhook. The workflow automatically chunks documents into manageable segments, generates embeddings, and stores them in a vector database for efficient retrieval. When users ask questions, the system finds the most relevant document sections and uses them to generate accurate, contextual responses.
n8n$24.99Telegram Bot with Supabase Memory and OpenAI Assistant Integration
### Video Guide I prepared a detailed guide that showed the whole process of building an AI bot, from the simplest version to the most complex in a template. [.png)](https://www.youtube.com/watch?v=QrZxuWgFqBI) ### Who is this for? This workflow is ideal for developers, chatbot enthusiasts, and businesses looking to build a dynamic Telegram bot with memory capabilities. The bot leverages OpenAI's assistant to interact with users and stores user data in Supabase for personalized conversations. ### What problem does this workflow solve? Many simple chatbots lack context awareness and user memory. This workflow solves that by integrating Supabase to keep track of user sessions (via `telegram_id` and `openai_thread_id`), allowing the bot to maintain continuity and context in conversations, leading to a more human-like and engaging experience. ### What this workflow does This Telegram bot template connects with OpenAI to answer user queries while storing and retrieving user information from a Supabase database. The memory component ensures that the bot can reference past interactions, making it suitable for use cases such as customer support, virtual assistants, or any application where context retention is crucial. 1. **Receive New Message:** The bot listens for incoming messages from users in Telegram. 2. **Check User in Database:** The workflow checks if the user is already in the Supabase database using the `telegram_id`. 3. **Create New User (if necessary):** If the user does not exist, a new record is created in Supabase with the telegram_id and a unique `openai_thread_id`. 4. **Start or Continue Conversation with OpenAI:** Based on the user's context, the bot either creates a new thread or continues an existing one using the stored `openai_thread_id`. 5. **Merge Data:** User-specific data and conversation context are merged. 6. **Send and Receive Messages:** The message is sent to OpenAI, and the response is received and processed. 7. **Reply to User:** The bot sends OpenAI's response back to the user in Telegram. ### Setup 1. **Create a Telegram Bot** using the [Botfather](https://t.me/botfather) and obtain the bot token. 2. **Set up Supabase:** 1. Create a new project and generate a `SUPABASE_URL` and `SUPABASE_KEY`. 2. Create a new table named `telegram_users` with the following SQL query: ``` create table public.telegram_users ( id uuid not null default gen_random_uuid(), date_created timestamp with time zone not null default (now() at time zone 'utc'), telegram_id bigint null, openai_thread_id text null, constraint telegram_users_pkey primary key (id) ) tablespace pg_default; ``` 3. **OpenAI Setup:** 1. Create an OpenAI assistant and obtain the `OPENAI_API_KEY`. 2. Customize your assistant's personality or use cases according to your requirements. 4. **Environment Configuration in n8n:** 1. Configure the Telegram, Supabase, and OpenAI nodes with the appropriate credentials. 2. Set up triggers for receiving messages and handling conversation logic. 3. Set up OpenAI assistant ID in **OPENAI - Run assistant** node.
n8n$14.99Automate Job Listings Extraction from Hacker News to Airtable with AI
This workflow automates the extraction and structuring of job listings from Hacker News using AI, and saves them into Airtable for easy access and management.
n8n$14.99Transform POML to AI-Ready Prompts and Chat Messages with n8n
Convert POML markup into Markdown prompts or chat-style messages using n8n's zero-dependency Code node. Ideal for teams needing a template-safe conversion process without external modules.
n8n$9.99Automate Client Transcript Analysis and Feedback Routing with AI, HubSpot, and Gmail
Streamline the process of analyzing client transcripts, logging insights in HubSpot, and routing feedback to relevant departments via Gmail using AI.
n8n$9.99Automate YouTube Video to SEO Blog Post Conversion with AI
Transform YouTube videos into SEO-optimized blog posts using AI tools. This workflow extracts video transcripts, generates blog content and images, and emails the final package for publication.
n8n$9.99Interact with OpenAI's GPT-3.5 via a Telegram Bot
Enable seamless communication with OpenAI's GPT-3.5 through a Telegram bot, providing AI-driven responses with emojis to user messages.
n8n$4.99Automate AI-Ready Vector Dataset Creation from Web Content
This n8n workflow automates the extraction, structuring, vectorization, and storage of web content into AI-ready vector datasets using advanced tools like Scrapeless, Claude AI, Ollama, and Qdrant.
n8n$14.99Automate Portrait Photo Upscaling with AI and Cloud Storage
This workflow automates the process of retrieving portrait photos from Airtable, enhancing them using AI upscaling, and storing the improved images in Google Drive. It ensures efficient batch processing and organized storage.
n8n$9.99Automate YouTube Comment Sentiment Analysis and Reporting via Telegram
This workflow automates the retrieval and analysis of YouTube comments for sentiment and keywords, storing results in Google Sheets and sending a summary report to Telegram.
n8n$14.99
Related categories
Custom AI Systems & Services
Our team of experienced AI builders will help build custom AI systems, workflows, and solutions.
Request Custom Work