$cd ../guides/
🖥 Hardware GuideRaspberry Pi 5Budget Pick

Raspberry Pi 5:
$80 AIサーバー

/** 正直なガイド。実際に機能するもの、しないもの、8GB RAMから最大限を引き出す方法。 */

// 購入前の正直な現実チェック
Pi 5は軽量AIタスクに適している:シンプルなチャット、リマインダー、Notionクエリ、Webhook処理
リアルタイム会話での大型モデル(7B+)には遅すぎる
重い推論をクラウドAPI(Claude/GPT-4o)にルーティングする場合、専用コントローラーとして優秀
予算が許すなら Mac Mini M4 Pro と比較 — 10倍高速な推論
$80
総コスト
// Pi 5 8GB + ケース
5W
アイドル消費電力
// 月額$1未満
16 t/s
gemma2:2b
// Pi 5に最適
ARM
アーキテクチャ
// Cortex-A76クアッド
model_compatibility.log

🤖 Pi 5(8GB RAM)のモデル互換性

phi3:mini (3.8B)8 tok/s
llama3.2:3b11 tok/s
gemma2:2b16 tok/s
mistral:7b3 tok/s
llama3.1:8b< 1 tok/s
config.yaml

⚙️ Pi 5の推奨設定

# Optimized for Raspberry Pi 5 8GB
ai:
provider: "ollama"
model: "llama3.2:3b" # sweet spot on Pi 5
num_threads: 4 # use all 4 cores
context_length: 2048 # smaller = faster on Pi
routing:
complex: # heavy tasks → cloud
provider: "anthropic"
setup.sh

🚀 セットアップ手順

# 1. Flash Raspberry Pi OS (64-bit) to SD card
# 2. Enable SSH, connect to network
# 3. Install Ollama
$ curl -fsSL https://ollama.ai/install.sh | sh
$ ollama pull llama3.2:3b
# 4. Install OpenClaw
$ curl -fsSL https://openclaw.ai/install.sh | bash
# 5. Enable auto-start on Pi boot
$ sudo systemctl enable openclaw
$ sudo systemctl start openclaw
← ガイドに戻る