DEV Community

Nodles.ai
Nodles.ai

Posted on

How to Build a No-Code AI Pipeline in 3 Minutes (Step by Step)

Most "no-code AI" tools give you a chatbot. This tutorial builds a real pipeline: paste a URL, scrape the page, summarize it with Gemini, get a clean brief. Four nodes, three minutes.

You'll need: a free NODLES account + a Gemini API key from Google AI Studio.


What you're building

[Text Input: URL] → [Web Scraper] → [Gemini: summarize] → [Output]
Enter fullscreen mode Exit fullscreen mode

4 nodes. 3 connections. Working pipeline.


Step 1 — Text Input node

Open the NODLES canvas. Drag a Text Input node from the sidebar. Label it "Target URL". This is your pipeline's entry point.

Step 2 — Web Scraper node

Drag a Web Scraper node to the right. Connect it: drag from the output handle of Text Input to the input handle of Web Scraper.

Step 3 — Gemini node + prompt

Drag a Gemini node and connect it to the Web Scraper output. Paste this prompt:

Summarize the following content in exactly 3 sentences.
Be concise and factual. Focus on the main point of the page.

{{input}}
Enter fullscreen mode Exit fullscreen mode

{{input}} is replaced with the scraped content at runtime. Paste your Gemini API key in the key field — stored locally, never sent to NODLES servers.

Step 4 — Output node + run

Drag an Output node, connect it to Gemini. Hit Run. Paste any article URL. Watch the nodes execute in sequence. 5-15 seconds later: your 3-sentence brief.


Where to go from here

  • Add a Grok node to evaluate tone
  • Add an OpenAI node to generate a social caption
  • Swap Text Input for a list node to process multiple URLs

Each extension is one more node and one more connection.


Free tier: 5 workflows, 50 executions/month. BYOK — bring your own Gemini key. nodles.ai

Top comments (0)