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

推荐订阅源

MyScale Blog
MyScale Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
V
Visual Studio Blog
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
L
LangChain Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
P
Proofpoint News Feed
博客园_首页
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog

Hacker News - Newest: "LLM"

GitHub - lechmazur/position_bias: A benchmark for testing whether LLM judges keep the same preference when two lightly edited versions of the same story are shown in opposite orders. Flex routing (EU and EFTA) Dark Factories: Retooling for LLM Velocity Ask HN: What would be the impact of a LLM output injection attack? GitHub - AronDaron/dataset-generator: No-code desktop app for generating high-quality synthetic datasets to fine-tune LLMs — plan-then-execute pipeline, LLM-as-judge, HuggingFace upload. GitHub - Oaklight/llm-rosetta: Production-ready LLM API translation layer for Python — bidirectional conversion between OpenAI, Anthropic & Google formats via hub-and-spoke IR. Optional API gateway. Streaming & non-streaming. Zero core deps. Contributions welcome! GitHub - browser-use/browser-harness: Self-healing browser harness that enables LLMs to complete any task. GitHub - moeen-mahmud/remen: Remen turns thoughts into something you can return to Analyzing 156 LLM Launch Posts on Hacker News ChatGPT vs Gemini vs Claude: The Best LLM Subscription You Should Buy GitHub - salaamalykum/quran-semantic-search: High-density RAG Semantic Search Engine & Quran Corpus (GEO/SEO Architecture) GitHub - NVIDIA/TensorRT-LLM: TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs. TensorRT LLM also contains components to create Python and C++ runtimes that orchestrate the inference execution in a performant way. The State of LLM Bug Bounties in 2026 Operational Readiness Criteria for Tool-Using LLM Agents Meshcore: Architecture for a Decentralized P2P LLM Inference Network How an LLM becomes more coherent as we train it GitHub - seetrex-ai/laimark GitHub - Jossifresben/BibCrit: AI-assited biblical textual criticism GitHub - wastedcode/memex: File system based wiki, maintained by Claude 99helpers.com GitHub - cliver-project/AITrigram GitHub - unbody-io/adapt: A self-evolving memory layer for AI agents. GitHub - hb20007/awesome-gen-ai-fails: A list of incidents where reliance on generative AI and LLMs resulted in harm to companies, individuals, or society GitHub - nevenkordic/localmind: Run any local LLM with persistent memory and context. CLI agent over Ollama with SQLite-backed hybrid recall. No cloud. Ask HN: What are the machine requirements for a LLM like Llama-3.1-8B? Faster LLM Inference via Sequential Monte Carlo grpo explained: group relative policy optimization for llm finetuning - cgft Stop comparing price per million tokens: the hidden LLM API costs · TensorZero Andrej Karpathy's LLM Wiki Is a Bad Idea GitHub - GG-QandV/mnemostroma: Offline RAM-first cognitive leer/coprocessor for AI agents and robotics. Solves "Context Abandonment" with 20-80ms latency using a dual-thread biomimetic memory architecture (ONNX + SQLite WAL).
GitHub - stfurkan/pi-llm
2026-04-13 · via Hacker News - Newest: "LLM"

Pi-LLM: Local AI Server on Raspberry Pi 4

Turn your Raspberry Pi 4 (4GB) into a secure local LLM server running PrismML Bonsai 1-bit models. Chat with it from any device on your network via the built-in web UI with a model selector.

Why Bonsai? Traditional models need 2-7GB of RAM. Bonsai uses true 1-bit quantization (trained from scratch, not post-training compression). Two models included: Bonsai 4B (0.57GB, quality) and Bonsai 1.7B (0.25GB, fast) — switch between them from the UI dropdown.

Architecture

[Any device on LAN] --HTTPS--> [Caddy :443] --> [llama-server :8000 (router mode)]
                                                       |
                                                  Built-in web UI
                                                  + model selector dropdown
                                                  + OpenAI-compatible API
                                                       |
                                              ┌────────┴────────┐
                                              │                  │
                                         Bonsai 4B          Bonsai 1.7B
                                         (0.57 GB)          (0.25 GB)
                                          quality              fast

Models are loaded on-demand. Only the active model uses RAM (LRU eviction when switching).

Hardware Requirements

Item Notes
Raspberry Pi 4 Model B (4GB) The brain
32GB+ microSD (A2 rated) or USB SSD SSD recommended for longevity
5V/3A USB-C power supply Official RPi PSU recommended
Heatsink + fan Essential — sustained AI inference generates heat
WiFi or Ethernet WiFi is fine for most use cases

Quick Start — Core LLM Server (30-45 minutes)

This gets you a working local LLM chat accessible from any device on your LAN.

# 1. Flash Raspberry Pi OS Lite (64-bit) onto your SD card
#    See: guides/01-hardware-prep.md

# 2. SSH into your Pi
ssh pi@pi-llm.local

# 3. Copy this project to the Pi
scp -r pi-llm/ pi@pi-llm.local:~/pi-llm/

# 4. Run setup scripts in order
cd ~/pi-llm
sudo bash scripts/01-os-setup.sh        # System hardening + performance tuning
# >>> REBOOT and reconnect <<<
sudo bash scripts/02-install-bonsai.sh   # Build PrismML llama.cpp + Bonsai models
sudo bash scripts/03-security-setup.sh   # HTTPS + firewall
sudo bash scripts/04-monitoring.sh       # Temperature monitoring

# 5. Open the chat UI from any device on your network
#    https://pi-llm.local
#    (Accept the self-signed certificate warning)
#    Use the model selector dropdown to switch between Bonsai 4B and 1.7B

That's the complete core setup. You have a private LLM, accessible over HTTPS on your LAN, with two model sizes to pick from. Stop here if you only want local chat.

Optional: Physical Hardware Integration

Beyond chat, you can connect physical hardware (LEDs, displays, servos) and let the LLM control them via native tool calling.

Optional Step 05: TM1637 4-Digit Display (15 minutes)

Wire up a cheap TM1637 display, and the LLM can update it on command. Say "show 1234 on the display" and the physical LEDs light up in real time.

sudo bash scripts/05-install-display.sh

See guides/07-optional-display.md for wiring and details. Removable at any time with --uninstall.

Guides

Guide Description
01-hardware-prep.md What to buy, how to flash the SD card
02-os-setup.md First boot, SSH keys, what the setup script does
03-llm-server.md Bonsai models, llama-server router mode
04-security.md HTTPS, firewall rules
05-troubleshooting.md Common issues and fixes
06-optional-static-ip.md Optional: configure a static IP
07-optional-display.md Optional: TM1637 display with LLM tool calling

RAM Budget (4GB)

Component RAM Usage
Raspberry Pi OS Lite ~300 MB
llama-server + active model (on-demand) ~0.3-0.6 GB
Caddy reverse proxy ~25 MB
Total (one model loaded) ~0.6-0.9 GB
Free RAM ~3.1-3.4 GB

Router mode loads models on-demand. Only the active model occupies RAM. Switching models unloads the previous one.

Expected Performance

  • Bonsai 4B: ~2 tokens/second
  • Bonsai 1.7B: ~4-8 tokens/second
  • Concurrent users: 1 recommended (limited by Pi 4 hardware)

Security

  • SSH key-only authentication (passwords disabled)
  • fail2ban (3 attempts -> 1 hour ban)
  • HTTPS via Caddy (self-signed TLS)
  • UFW firewall (SSH + HTTPS from LAN only, direct port 8000 blocked)
  • Automatic security updates (unattended-upgrades)

Disclaimer

This is an educational/hobbyist project. It is provided "as is" without warranty of any kind. The authors take no responsibility for any damage, data loss, security issues, or other problems arising from the use of this project. Use it at your own risk.

  • The self-signed TLS certificate is not suitable for production or public-facing deployments
  • LLM outputs may be inaccurate, biased, or inappropriate — do not rely on them for critical decisions
  • Security hardening is designed for a trusted home network, not hostile environments
  • PrismML Bonsai models are third-party and subject to their own licenses and limitations

Always review the scripts before running them with sudo on your system.

License

MIT