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

推荐订阅源

GbyAI
GbyAI
WordPress大学
WordPress大学
D
DataBreaches.Net
腾讯CDC
小众软件
小众软件
B
Blog RSS Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Y
Y Combinator Blog
V
V2EX
I
InfoQ
D
Docker
量子位
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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 - 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). mempalace/agent at agent · skorotkiewicz/mempalace
GitHub - fambaseOU/localDom: LocalDom** turns your local ...
ndukaaniemek · 2026-04-23 · via Hacker News - Newest: "LLM"

LocalDom turns your local LLM engines into secure, authenticated API services. It allows you to generate professional API credentials for your local AI (Ollama, LM Studio, etc.), making it seamless to use your private models anywhere—from mobile apps to external web services—with End-to-End Encryption (E2EE) and Persistent Memory.

License: MIT Version


⚡ Core Architecture

LocalDom uses a "Blind Relay" pattern. The relay server routes traffic without seeing your prompts, which are encrypted locally by your agent.

graph LR
    UserApp[External App] -- Encrypted Prompt --> Relay[LocalDom Relay]
    Relay -- Encrypted Payload --> Agent[LocalDom Agent]
    Agent -- Decrypts & Proxies --> LocalLLM[Ollama / LM Studio]
    LocalLLM -- Response --> Agent
    Agent -- Encrypts Response --> Relay
    Relay -- Encrypted Result --> UserApp
Loading

🚀 Quick Start

1. Launch the Gateway

This builds the dashboard and starts the relay on port 9090.

npm start

Note: Copy the ld_... API key printed in your terminal.

2. Launch the Local Agent

Start the discovery agent on your local machine.

npm run agent

💎 v2.5 New Features

🧠 Infinite Session Memory

LocalDom now manages conversation context locally. Just provide the X-LocalDom-Session header, and the agent will automatically "stitch" your conversation history into the prompt.

  • Privacy: History is stored on your machine, never the cloud.
  • Persistence: Memories survive restarts in agent/memory.json.

📡 Live Engine Scanner

Tired of stale lists? The dashboard now features a Live Rescan button. Trigger a system-wide search for new LLM runners without restarting your agent.

🛡️ Security Shield

  • Rate Limiting: Protects your machine from DDoS and brute-force key guessing.
  • Header Sanitization: Automatically strips sensitive metadata (Cookies, Host) before proxying.
  • AES-256-GCM: Industry-standard encryption for all tunneled traffic.

🛠️ Usage Examples

LocalDom is designed to be a drop-in replacement for any OpenAI-compatible client.

🌐 JavaScript (Fetch API)

fetch('http://localhost:9090/api/ollama/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-LocalDom-Key': 'your_ld_key',
    'X-LocalDom-Session': 'chat-123' // Optional memory session
  },
  body: JSON.stringify({
    model: 'llama3',
    messages: [{ role: 'user', content: 'Tell me a joke.' }]
  })
}).then(res => res.json()).then(console.log);

🐚 cURL (Terminal)

curl http://localhost:9090/api/ollama/v1/chat/completions \
  -H "X-LocalDom-Key: your_ld_key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llama3",
    "messages": [{"role": "user", "content": "Ping!"}]
  }'

📄 Documentation


📜 License & Philosophy

This project is licensed under the MIT License.

🛑 Usage Restrictions

While the license is permissive, the creator of LocalDom maintains a strict Non-Commercial Philosophy:

  • 100% Free Use: This software is intended to be free for everyone.
  • No Reselling: You are not permitted to reverse engineer this project for the purpose of selling it for profit.
  • Community First: Keep the gateway open and private.

🛡️ License

MIT © 2026 LocalDom Team