AI Workflows
Artificial Intelligence tools and workflows
Automate Research Paper Summaries with GPT-4 and PDF Vector
This workflow automates the creation of various research paper summaries using GPT-4 and PDF Vector, making complex academic content accessible to diverse audiences.
n8n$9.99Process Documents with Recursive Chunking Using Google Drive, OpenAI & Gemini RAG
**1. Document Ingestion & Processing** Google Drive trigger monitors for new files → Loop Over Items processes each file → File Info extracts metadata → Google Drive downloads the actual content → Switch routes to appropriate extractors (PDF or EX) based on file type **2. Content Transformation & Chunking** Document Data node processes extracted text → Recursive Splitter breaks content into contextual chunks → Chunk Splitting applies intelligent segmentation while preserving document context and relationships between chunks **3. Embedding & Storage** Basic LLM Chain processes chunks → OpenAI Chat Model generates contextual understanding → Summarize creates document summaries → Supabase Vector Store saves embeddings with metadata → Embeddings OpenAI creates vector representations → Default Data Loader handles storage operations **4. Query Processing & Retrieval** When Clicking Execute triggers user queries → OpenAI processes and understands the question → AI Agent orchestrates hybrid search (combining vector similarity + keyword matching) → Google Gemini Chat Model generates final responses using retrieved context → HP Request handles additional external data sources
n8n$14.99Automate Newsletter Drafts from YouTube Transcripts with Dumpling AI and GPT-4o
Transform YouTube video links into polished newsletter drafts using Dumpling AI and GPT-4o. This workflow reads video URLs from Google Sheets, extracts transcripts, summarizes them into newsletter content, and logs the drafts back into the sheet while notifying you via email.
n8n$4.99Automate Workflow Documentation and Promotion with Google Drive, Notion, and LinkedIn
Effortlessly document and promote your n8n workflows by automating the process using Google Drive, Notion, and LinkedIn. Triggered by a file upload, this workflow utilizes Google Gemini AI to generate detailed descriptions and engaging LinkedIn posts.
n8n$9.99Transform PDF Documents into AI-Generated Podcasts with Google Gemini
Automatically convert PDF documents into engaging podcasts using Google Gemini's AI and text-to-speech technology. This workflow extracts text, generates scripts, and produces high-quality audio files, perfect for content creators and educators.
n8n$9.99Automate Instagram Reel Analysis and Content Creation with AI and Google Sheets
This workflow automates the process of analyzing Instagram Reels and generating viral content ideas using AI. It extracts insights and scripts from Reels, saving them to Google Sheets for easy access.
n8n$24.99AI-Driven Recipe Suggestions via WhatsApp Using Pantry Items
Transform your pantry items into delicious recipes with AI-powered suggestions delivered through WhatsApp. Integrate Google Gemini AI and FatSecret API for personalized cooking assistance.
n8n$4.99Interact with PDF Documents Using AI and Source Citations
This workflow enables users to query PDF documents using AI, providing answers with source citations. It integrates with Google Drive, Pinecone, and OpenAI for document retrieval, vector storage, and AI processing.
n8n$14.99Create a Multi-Functional Discord Bot with AI and Image Generation
This workflow sets up a Discord bot capable of monitoring messages, processing media, and generating AI-driven responses and images. It integrates Llama AI for text analysis, Groq for image and audio processing, and Gemini AI for image creation.
n8n$24.99Simulate Job Interviews with Google Gemini AI Voice Assistant
This workflow facilitates realistic job interview simulations using Google Gemini AI, providing dynamic and personalized practice by maintaining conversation history for relevant follow-up questions.
n8n$9.99AI-Powered Email to Jira Ticket Creation with Llama 3.2
This AI-powered workflow reads emails, understands the request using an LLM, and creates structured Jira issues. ### Key Insights - Poll for new emails every 5 minutes; ensure Gmail/IMAP is properly configured. - AI analysis requires a reliable LLM model (e.g., Chat Model or AI tool). ### Workflow Process - Trigger the workflow with the `Check for New Emails Gmail Trigger` node. - Fetch full email content using the `Fetch Full Email Content get message` node. - Analyze email content with the `Analyze Email & Extract Tasks` node using AI. - Parse the AI-generated JSON output into tasks with the `Parse JSON Output from AI` node. - Create the main Jira issue with the `Jira - Create Main Issue create: issue` node. - Split subtasks from JSON and create them with the `Split Subtasks JSON Items` and `Create Subtasks create: issue` nodes. ### Usage Guide - Import the workflow into n8n and configure Gmail and Jira credentials. - Test with a sample email to ensure ticket creation and subtask assignment. ### Prerequisites - Gmail/IMAP credentials for email polling - Jira API credentials with issue creation permissions ### Customization Options Adjust the `Analyze Email & Extract Tasks` node to refine AI task extraction or modify the polling frequency in the trigger node.
n8n$9.99Automated Context-Aware Query Answering with Google Gemini and Qdrant
This workflow automates the classification and retrieval of user queries to provide precise and contextually relevant answers. It leverages Google Gemini and Qdrant to adaptively handle factual, analytical, opinion, and contextual queries.
n8n$24.99Automate Web Scraping and Screenshots with Firecrawl and GPT 4.1
Leverage AI to transform natural language prompts into web scraping queries and capture full-page screenshots using Firecrawl's API, all without writing code.
n8n$9.99Transform JSON to XML for Enhanced AI Prompt Formatting
## Overview This template provides a powerful and configurable utility to convert JSON data into a clean, well-structured XML format. It is designed for developers, data analysts, and n8n users who need to interface with legacy systems, generate structured reports, or prepare data for consumption by Large Language Models (LLMs), which often exhibit improved understanding and parsing with XML-formatted input. ## Use Cases This workflow is ideal for solving several common data transformation problems: * **Preparing Data for AI Prompts:** LLMs like GPT-4 often parse XML more reliably than JSON within a prompt. The explicit closing tags and hierarchical nature of XML reduce ambiguity, leading to better and more consistent responses from the AI. * **Interfacing with Legacy Systems:** Many enterprise systems, SOAP APIs, and older software exclusively accept or produce data in XML format. This template acts as a bridge, allowing modern JSON-based services to communicate with them seamlessly. * **Generating Structured Reports:** Create XML files for reporting or data interchange standards that require a specific, well-defined structure. * **Improving Data Readability:** For complex nested data, a well-formatted XML can be easier for humans to read and debug than a compact JSON string. ## How it works This workflow acts as a powerful, configurable JSON to XML converter. It takes a JSON object as input and performs the following steps: 1. **Recursively Parses JSON:** It intelligently navigates through the entire JSON structure, including nested objects and arrays. 2. **Handles Data Types:** * **Primitive Arrays** (e.g., `[a, b, c]`) are joined into a single string with a safe delimiter. * **Complex Arrays** (of objects) are converted into indexed XML tags (<0>, <1>, etc.). * **Dates** are automatically detected and formatted into a readable `YYYY-MM-DD HH:mm:ss` format. 3. **Generates XML String:** It constructs a final XML string based on the logic and configuration set inside the Code node. The output is provided in a single `xml` field, ready for use. ## Set up steps **Setup time: ~1 minute** This workflow is designed to be used as a sub-workflow (or child workflow). 1. In your main workflow, add an **Execute Workflow** node. 2. In the **Workflow** parameter of that node, select this JSON to XML Converter workflow. 3. That's it! You can now send JSON data to the Execute Workflow node and it will return the converted XML string in the `xml` field. ## Customization Options The true power of this template lies in its customizability, all managed within the configuration section at the top of the Code node. This allows you to fine-tune the output XML to your exact needs. * **`REMOVE_EMPTY_VALUES`**: Set to `true` (default) to completely omit tags for `null`, `undefined`, or empty string values, resulting in a cleaner XML. Set to `false` to include empty tags like <mytag></mytag>. * **Newline Formatting**: Control the spacing and readability of the output with four distinct settings: * `NEWLINES_TOP_LEVEL`: Adjusts the newlines between root-level elements. * `NEWLINES_ARRAY_ITEMS`: Controls spacing between items in a complex array (e.g., between <0> and <1>). * `NEWLINES_OBJECT_PROPERTIES`: Manages newlines between the properties of an object. * `NEWLINES_WITHIN_TAGS`: Adds newlines between an opening/closing tag and its content for an indented look. ## Prerequisites * An active n8n instance. * Basic familiarity with JSON and XML data structures. * Understanding of how to use the **Execute Workflow** node to run sub-workflows.
n8n$4.99Effortlessly Create AI Videos from Google Sheets with Fal.AI
Transform your ideas into AI-generated videos directly from Google Sheets using Fal.AI, offering a cost-effective alternative to Veo3.
n8n$9.99Automate Comprehensive Research Report Generation and Delivery
Streamline the creation of professional research reports using AI and multiple data sources, with automated delivery via Gmail or Telegram.
n8n$14.99Automate Competitor Monitoring and Content Ideation with GPT-4 and Gemini
This workflow helps women creators and lifestyle brands effortlessly monitor competitor content and generate weekly content ideas using Firecrawl, OpenAI, and Gemini, with results stored in Google Sheets.
n8n$14.99Automate Competitor Research & Intelligence with Browser, Use Cloud AI, and Slack
A sample demo showing how to integrate Browser Use Cloud API with N8N workflows. This template demonstrates AI-powered web research automation by collecting competitor intelligence and delivering formatted results to Slack. ### How It Works 1. Form trigger accepts competitor name input. 2. Browser Use Cloud API performs automated web research. 3. Webhook processes completion status and retrieves structured data. 4. JavaScript code formats results into a readable Slack message. 5. HTTP request sends the final report to Slack. ### Integration Pattern This workflow showcases key cloud API integration techniques: - REST API authentication with bearer tokens. - Webhook-based status monitoring for long-running tasks. - JSON data parsing and transformation. - Conditional logic for processing different response states. ### Setup Required - Browser Use API key (signup at [cloud.browser-use.com](http://cloud.browser-use.com)) - Slack webhook URL. Perfect demo for learning browser-use cloud API integrations and building automated research workflows.
n8n$4.99Automate Job Discovery & AI Proposals Across Upwork, Freelancer, Guru & PPH with OpenRouter
# Upwork/Freelancer/Guru/PPH Job Automation + AI Proposal Generator ## Overview This comprehensive n8n workflow automates freelance job discovery and application processes across four major platforms: **Upwork.com**, **Freelancer.com**, **PeoplePerHour.com**, and **Guru.com**. The system monitors RSS feeds, extracts job details, generates personalized AI proposals, and tracks everything in Google Sheets with email notifications. ## Supported Platforms ### Complete Market Coverage **Upwork.com** - World's largest freelance marketplace - High-value projects and enterprise clients - Competitive bidding environment requiring fast responses **Freelancer.com** - Global platform with diverse project types - International client base across all industries - Contest and fixed-price project opportunities **PeoplePerHour.com** - UK-focused professional services platform - Hourly and project-based work - Business and creative services emphasis **Guru.com** - Premium freelance marketplace for skilled professionals - Workroom collaboration features - Recurring client relationship focus ## Use Cases ### Primary Use Cases **Multi-Platform Lead Generation** - Monitor Upwork, Freelancer, PeoplePerHour, and Guru simultaneously - Receive instant notifications for relevant opportunities across all platforms - Never miss time-sensitive job postings from any major marketplace **Cross-Platform Proposal Automation** - Generate platform-specific, personalized proposals using AI - Adapt proposal style to each platform's requirements and culture - Maintain consistent quality across all applications and platforms **Comprehensive Opportunity Tracking** - Automatically log jobs from all four platforms in Google Sheets - Track application status and platform performance **Competitive Market Advantage** - Respond to jobs within minutes across multiple platforms - Maintain 24/7 monitoring without manual intervention - Access broader market opportunities while competitors focus on single platforms ### Industry Applications **Digital Marketing Agencies** - Monitor automation projects across Upwork and Freelancer - Track competitor applications on multiple platforms - Access European clients through PeoplePerHour and international through Guru **Software Development Teams** - Find API integration projects on Upwork and technical contests on Freelancer - Monitor PeoplePerHour for UK-based development work - Track long-term client relationships on Guru **Virtual Assistant Services** - Discover automation opportunities across all four platforms - Monitor recurring service requests and business support roles - Scale operations by accessing different market segments **Consulting Practices** - Track business automation requests on premium platforms like Guru - Monitor transformation projects across international markets - Access diverse client bases from startup (Freelancer) to enterprise (Upwork) ## Technical Features ### Technical Features **Multi-Platform RSS Monitoring** - Configurable polling intervals (default: 5 minutes) - Processes Vollna API feeds for Upwork, Freelancer, PeoplePerHour, and Guru - Handles various platform-specific job feed formats automatically **Intelligent Data Extraction** - Parses job titles to extract budget information across different platform formats - Supports multiple pricing formats (fixed, hourly, ranges) from all platforms - Cleans and structures job data with platform-specific considerations **Advanced URL Processing** - Decodes nested URLs from feed redirects - Automatically identifies source platforms (Upwork, Freelancer, PeoplePerHour, Guru) - Validates and formats final job URLs for direct platform access **AI Integration with Platform Awareness** - Uses OpenRouter for AI model access with platform-specific contexts - Implements advanced prompt engineering for different platform cultures - Generates contextual, personalized proposals adapted to each platform **Multi-Platform Support** - Gmail integration for notifications - Google Sheets for data storage - HTML email formatting - Automated database updates ### Configuration Options **Filtering System** - ASCII text filtering for English content - Custom budget range filtering - Platform-specific filtering rules - Keyword-based job matching **AI Customization** - Customizable proposal templates - Variable experience levels - Industry-specific positioning - Personal branding integration **Notification Preferences** - HTML-formatted email alerts - Mobile-friendly email templates - Batch processing options - Error handling and retry logic ## Benefits ### Operational Efficiency **Time Savings** - Eliminates manual job checking (save 2-3 hours daily) - Automates proposal writing process - Reduces administrative overhead **Response Speed** - 5-minute job discovery cycle - Instant proposal generation - Competitive response timing **Quality Consistency** - Standardized proposal quality - Professional email formatting
n8n$14.99Automate Job Search and Organization with AI and Google Sheets
Streamline your job search by using AI to analyze your resume, find relevant job listings, and organize them in Google Sheets for easy access and management.
n8n$9.99Automate Website Scraping and AI Analysis with Apify and OpenRouter
This workflow leverages Apify for web scraping and OpenRouter for AI-driven prompt execution, enabling automated data extraction and analysis from websites.
n8n$9.99Automate Travel Agency Assistant with OpenAI and Google Drive
This workflow automates the creation and management of a custom OpenAI Assistant for a travel agency, utilizing Google Drive for document storage and retrieval.
n8n$9.99Automate Stock Earnings Report Analysis with AI and Google Tools
This n8n workflow automates the analysis of company quarterly earnings reports using AI tools like OpenAI and Google's Gemini AI, alongside Pinecone's vector search. It processes PDFs from Google Drive, analyzes them, and compiles findings into a structured Google Doc.
n8n$14.99Automate Web Browsing and Data Extraction with Airtop and AI
Leverage Airtop for automated web interactions triggered by AI agents using n8n's MCP Server Trigger. Ideal for browser automation, intelligent data extraction, and agent-driven workflows.
n8n$9.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