Agentic AI
Tutorials
Top AI Agents Platforms
No code 與 Low code AI 應用開發平台
Self-Hosted
Cloud-Based
n8n
- https://n8n.io/
- Doc: https://docs.n8n.io/hosting/
- Automate Your Home Lab with n8n Workflow Automation and AI - Virtualization Howto
Community Nodes
PDF to Image
n8n-nodes-pdfconvertn8n Installation
On a laptop (small level)
- YOUR_TIMEZONE:
Asia/TaipeiorAmerica/ChicagoorAmerica/New_York
docker volume create n8n_data
docker run -it --rm \
--name n8n \
-p 5678:5678 \
-e GENERIC_TIMEZONE="<YOUR_TIMEZONE>" \
-e TZ="<YOUR_TIMEZONE>" \
-e N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true \
-e N8N_RUNNERS_ENABLED=true \
-v n8n_data:/home/node/.n8n \
docker.n8n.io/n8nio/n8n
Quick Start Examples
Basic Data Access
{{ $json.fieldName }} // Get field from current item
{{ $('Node Name').item.json.field }} // Data from specific node
{{ $json.items?.[0] }} // Safe array access
Date Functions
{{ $now.format('YYYY-MM-DD') }} // 2024-01-15
{{ $now.plus({days: 7}) }} // 7 days from now
{{ $now.diff('2024-01-01', 'days') }} // Days between dates
String Manipulation
{{ $json.name.toLowerCase() }} // convert to lowercase
{{ $json.email.split('@')[0] }} // Username from email
{{ $json.text.slice(0, 50) }} // First 50 characters
Array Processing
{{ $json.items.length }} // Count array items
{{ $json.items.filter(item => item.active) }} // Filter items
{{ $json.items.map(item => item.name) }} // Extract field from all items
跨 Nodes 傳 binary 內容
- Analyze any Video, Image or PDF with Gemini and n8n (Step-by-Step) - YouTube (Gemini API - Http Request)
新增 Code node
return{
json: {},
binary: $('On Form submission').item.binary
}
No Code Tools
More
AgentGPT
AgentGPT allows you to configure and deploy Autonomous AI agents. Name your own custom AI and have it embark on any goal imaginable.
Camel AI
CAMEL-AI.org is the 1st LLM multi-agent framework and an open-source community dedicated to finding the scaling law of agents.
SWE-agent
SWE-agent turns LMs (e.g. GPT-4) into software engineering agents that can fix bugs and issues in real GitHub repositories.
AutoGen
Enable Next-Gen Large Language Model Applications
AutoGPT
AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.
AutoGPT-Code-Ability
AutoGPT's coding ability is an open-source coding assistant powered by AI. The goal is to make software development more accessible to everyone, regardless of skill level or resources. By generating code in Python, a popular and very accessible language, AutoGPT acts as a virtual co-pilot to help users build projects like backends for existing frontends or command-line tools.
Potpie
Potpie is an open-source platform that creates AI agents specialized in your codebase, enabling automated code analysis, testing, and development tasks.