Block 1 - Wait
- Type / Role
- n8n-nodes-base.wait - wait
- Config choices
- Version 1.1
This workflow is provided as-is. Please review and test before using in production.
Who is this for? Anyone curating before/after text examples in a spreadsheet and wanting a push button path to a fine tuned GPT model—without touching curl. Works with Google Sheets or Airtable . W...
n8n-nodes-base.wait, n8n-nodes-base.scheduletrigger, n8n-nodes-base.set, n8n-nodes-base.httprequest, @n8n/n8n-nodes-langchain.openai, n8n-nodes-base.code, n8n-nodes-base.if, n8n-nodes-base.stopanderror
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Matty Reed.
Original n8n.io sourceAnyone curating before/after text examples in a spreadsheet and wanting a push-button path to a fine-tuned GPT model—without touching curl. Works with Google Sheets or Airtable.
Manually downloading CSVs, converting to JSONL, uploading, and polling OpenAI is a slog.
This flow automates the whole loop: grab examples flagged Ready, build the JSONL file, start the fine-tune, then log the resulting model ID back to a registry sheet/table for reuse.
| # | Node | Purpose |
|---|---|---|
| 1 | Schedule Trigger | Runs weekly by default (change as needed). |
| 2a | Get Examples from Sheet | Pulls rows where Ready = TRUE from your Google Sheet. Uses the JSONL-Template Sheet as the expected column layout. |
| 2b | Get Examples from Airtable (disabled) | Alternate source for Airtable users. |
| 3 | Create JSONL File (Code) | Converts each example to chat-format JSONL and splits into train.jsonl / val.jsonl (80/20). |
| 4 | Upload JSONL | Uploads the training file to OpenAI (purpose: fine-tune). |
| 5 | Begin Fine-Tune | Starts a fine-tune job on gpt-4o (editable). |
| 6 | Wait → Check Job → IF | Polls every minute until status = succeeded. |
| 7a | Write Model to Sheet | Appends the new model ID + meta to your Model Registry sheet. |
| 7b | Write Model to Airtable (disabled) | Equivalent logging step for Airtable. |
Import & connect credentials
Copy the template sheet
Ready = TRUE for rows you want to include.Create the registry sheet/table
Model ID, Training Examples, Epochs, Batch Size, Learning Rate, Finished At.Tweak model & schedule
Test it
Ready = TRUE. This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Automate GPT-4o fine-tuning with Google Sheets or Airtable data |
|---|---|
| Complexity | advanced |
| Nodes | 19 |
| Categories | Engineering, Multimodal AI |
| Author | Matty Reed |
| Published | 10 Jun 2025 |
Use the JSON export at /data/workflows/4853/4853.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Who is this for? Anyone curating before/after text examples in a spreadsheet and wanting a push button path to a fine tuned GPT model—without touching curl. Works with Google Sheets or Airtable . W...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Engineering, Multimodal AI use case.