惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
H
Help Net Security
G
Google Developers Blog
D
Docker
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
T
The Blog of Author Tim Ferriss
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
I
InfoQ
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
Google DeepMind News
Google DeepMind News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
สร้าง AI Agent บน LINE ด้วย Garudust (Rust) — ตั้งแต่ต้นจ...
Nisit Sirima · 2026-05-14 · via DEV Community

ถ้าคุณอยากมี AI Agent ส่วนตัวที่คุยได้ผ่าน LINE โดยไม่ต้องพึ่ง no-code platform บทความนี้จะพาคุณทำตั้งแต่ต้นจนจบ เครื่องมือที่ใช้คือ Garudust — AI Agent framework เขียนด้วย Rust รองรับ OpenAI, Anthropic, Ollama, vLLM และ OpenAI-compatible endpoint ทุกเจ้า


สิ่งที่ต้องมี

  • เซิร์ฟเวอร์ Linux หรือ macOS (หรือรันบน VPS ก็ได้)
  • บัญชี LINE Developers (ฟรี) → developers.line.biz
  • API Key จาก OpenAI, Anthropic, หรือ endpoint อื่นๆ
  • ngrok (สำหรับ dev) หรือโดเมนจริง (สำหรับ production)

1. ติดตั้ง Garudust

วิธีที่ 1 — ดาวน์โหลด binary

ไปที่ Releases แล้วดาวน์โหลดไฟล์ที่ตรงกับระบบของคุณ:

# Linux x86_64
curl -LO https://github.com/garudust-org/garudust-agent/releases/latest/download/garudust-v0.3.1-x86_64-unknown-linux-musl.tar.gz
tar -xzf garudust-*.tar.gz
sudo mv garudust*/garudust garudust*/garudust-server /usr/local/bin/

Enter fullscreen mode Exit fullscreen mode

วิธีที่ 2 — Build จาก source (ต้องมี Rust 1.87+)

git clone https://github.com/garudust-org/garudust-agent.git
cd garudust-agent
cargo build --release --bin garudust --bin garudust-server
sudo cp target/release/garudust target/release/garudust-server /usr/local/bin/

Enter fullscreen mode Exit fullscreen mode

ตรวจสอบว่าติดตั้งสำเร็จ:

garudust --version
garudust-server --version

Enter fullscreen mode Exit fullscreen mode


2. ตั้งค่า LINE Messaging API

  1. เข้าไปที่ LINE Developers Console
  2. สร้าง Provider ใหม่ (หรือใช้อันที่มีอยู่)
  3. สร้าง Channel ประเภท Messaging API
  4. ที่ tab Basic settings → คัดลอก Channel secret
  5. ที่ tab Messaging API → คลิก Issue เพื่อสร้าง Channel access token (long-lived)
  6. เปิด Use webhook → toggle เป็น Enable

เก็บค่าสองอย่างนี้ไว้:

LINE_CHANNEL_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
LINE_CHANNEL_TOKEN=eyJhbGci...

Enter fullscreen mode Exit fullscreen mode


3. ตั้งค่าไฟล์ config

Garudust แยก secret ออกจาก config เป็น 2 ไฟล์:

  • ~/.garudust/config.yaml — ตั้งค่าพฤติกรรม, platform, port (แชร์ได้)
  • ~/.garudust/.env — credentials เท่านั้น (ห้าม commit)

~/.garudust/.env

ใส่ credentials ทั้งหมดที่นี่:

# LLM provider
ANTHROPIC_API_KEY=sk-ant-...

# LINE adapter — tokens อยู่ใน .env เสมอ
LINE_CHANNEL_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
LINE_CHANNEL_TOKEN=eyJhbGci...

Enter fullscreen mode Exit fullscreen mode

~/.garudust/config.yaml

ตั้งค่า LINE platform (enabled, port, webhook_path) ที่นี่:

provider: anthropic
model: claude-sonnet-4-6

system_prompt: |
  คุณคือผู้ช่วย AI ชื่อ "น้องการุด" พูดภาษาไทย ตอบสั้นกระชับ
  ช่วยงานด้านข้อมูล วิเคราะห์ข้อความ และตอบคำถามทั่วไป
  ไม่ตอบเนื้อหาที่ไม่เหมาะสม

platforms:
  line:
    enabled: true
    port: 3002
    webhook_path: /line      # webhook URL: https://your-host:3002/line

Enter fullscreen mode Exit fullscreen mode

หลักการ: config.yaml เก็บพฤติกรรมและโครงสร้าง — enabled, port, webhook_path ส่วน .env เก็บ secret เท่านั้น — LINE_CHANNEL_SECRET, LINE_CHANNEL_TOKEN


4. รัน garudust-server

garudust-server

Enter fullscreen mode Exit fullscreen mode

ดู log จะเห็น:

INFO garudust_server: LINE webhook listening on 0.0.0.0:3002/line
INFO garudust_server: API server listening on 0.0.0.0:3000

Enter fullscreen mode Exit fullscreen mode

Port mapping เริ่มต้นของ Garudust:

Port ใช้สำหรับ
3000 HTTP API หลัก (/chat, /health, /metrics)
3001 Generic webhook
3002 LINE adapter
3003 WhatsApp adapter

5. เปิด Webhook ด้วย ngrok (สำหรับ Dev)

LINE ต้องการ HTTPS เท่านั้น — ngrok จะสร้าง HTTPS URL ชั่วคราวให้:

ngrok http 3002

Enter fullscreen mode Exit fullscreen mode

ngrok จะแสดง URL เช่น:

Forwarding  https://abc123.ngrok-free.app -> http://localhost:3002

Enter fullscreen mode Exit fullscreen mode

webhook URL ของคุณคือ:

https://abc123.ngrok-free.app/line

Enter fullscreen mode Exit fullscreen mode


6. ตั้งค่า Webhook URL ใน LINE Developers Console

  1. กลับไปที่ LINE Developers Console → Channel ของคุณ
  2. Tab Messaging API → ส่วน Webhook settings
  3. ใส่ URL: https://abc123.ngrok-free.app/line
  4. คลิก Verify — ควรได้ "Success"
  5. เปิด Use webhook ให้เป็น Enable

ลองส่งข้อความหา LINE Official Account ของคุณ — AI จะตอบกลับทันที


7. เพิ่ม Cron Job (ทำงานอัตโนมัติ)

Garudust มีระบบ cron ในตัว ตั้งค่าใน .env:

# ส่ง briefing ทุกเช้า 8 โมง
GARUDUST_CRON_JOBS="0 8 * * *=สรุปข่าวเทคโนโลยีไทยวันนี้ บันทึกลงไฟล์ ~/briefing.md"

# รวบรวม memory อัตโนมัติทุกคืน 03:00
GARUDUST_MEMORY_CRON="0 3 * * *"

Enter fullscreen mode Exit fullscreen mode


8. Deploy จริง (Production ด้วย systemd + nginx)

nginx reverse proxy

# /etc/nginx/sites-available/garudust
server {
    listen 443 ssl;
    server_name yourdomain.com;

    ssl_certificate     /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;

    # LINE webhook
    location /line {
        proxy_pass http://127.0.0.1:3002;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
    }

    # HTTP API
    location / {
        proxy_pass http://127.0.0.1:3000;
        proxy_set_header Host $host;
    }
}

Enter fullscreen mode Exit fullscreen mode

sudo ln -s /etc/nginx/sites-available/garudust /etc/nginx/sites-enabled/
sudo nginx -t && sudo systemctl reload nginx

Enter fullscreen mode Exit fullscreen mode

systemd service

# /etc/systemd/system/garudust.service
[Unit]
Description=Garudust AI Agent Server
After=network.target

[Service]
Type=simple
User=ubuntu
ExecStart=/usr/local/bin/garudust-server
Restart=on-failure
RestartSec=5
EnvironmentFile=/home/ubuntu/.garudust/.env
WorkingDirectory=/home/ubuntu

[Install]
WantedBy=multi-user.target

Enter fullscreen mode Exit fullscreen mode

sudo systemctl daemon-reload
sudo systemctl enable --now garudust
sudo systemctl status garudust

Enter fullscreen mode Exit fullscreen mode

webhook URL จริงของคุณ:

https://yourdomain.com/line

Enter fullscreen mode Exit fullscreen mode

ตั้งใน LINE Developers Console แล้วกด Verify — เสร็จสมบูรณ์


สรุป config ทั้งหมด

~/.garudust/.env — secrets เท่านั้น

ANTHROPIC_API_KEY=sk-ant-...
LINE_CHANNEL_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
LINE_CHANNEL_TOKEN=eyJhbGci...
GARUDUST_MEMORY_CRON="0 3 * * *"

Enter fullscreen mode Exit fullscreen mode

~/.garudust/config.yaml — พฤติกรรมและโครงสร้าง

provider: anthropic
model: claude-sonnet-4-6

system_prompt: |
  คุณคือผู้ช่วย AI ชื่อ "น้องการุด" พูดภาษาไทย ตอบสั้นกระชับ

platforms:
  line:
    enabled: true
    port: 3002
    webhook_path: /line

Enter fullscreen mode Exit fullscreen mode


สรุปขั้นตอน

ขั้นตอน สิ่งที่ทำ
.env ใส่ LINE_CHANNEL_SECRET + LINE_CHANNEL_TOKEN + LLM key
config.yaml ตั้ง platforms.line.enabled/port/webhook_path + system_prompt
garudust-server รัน API + LINE webhook server
ngrok / nginx เปิด HTTPS endpoint ให้ LINE เข้าถึงได้
LINE Console ตั้ง webhook URL + Verify

Garudust รองรับ OpenAI, Anthropic, Ollama, vLLM และ OpenAI-compatible endpoint ทุกเจ้า — เปลี่ยน provider ได้แค่แก้ 2 บรรทัดใน config แล้วรีสตาร์ท

ถ้ามีคำถามหรือเจอปัญหา เปิด Issue บน GitHub ได้เลย หรือ comment ไว้ด้านล่างครับ