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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
P
Proofpoint News Feed
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
美团技术团队
D
Docker
博客园 - Franky
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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 - cjparadise79/CONVERA-PUBLIC: PUBLIC Version of C...
cjparadise · 2026-05-04 · via Hacker News - Newest: "LLM"

Inference should not start from zero every time.

CONVERA is an experimental local inference runtime that treats repeated work as reusable state. The public build is CONVERA-OSS: a functional lite runtime with model loading, prompt-level KV persistence, local token graph reuse, benchmarks, telemetry, and a fixed-size content-addressed tensor store.

What It Does

Traditional inference reruns similar work again and again. CONVERA-OSS keeps a local reusable-state layer so repeat prompts and related runs can reuse stored runtime artifacts.

The repo includes:

  • Hugging Face model loading
  • backend selection for CUDA, ROCm-compatible PyTorch, MPS, and CPU
  • prompt-level KV cache persistence
  • local token graph lookup
  • convera_store_lite, a fixed-size deduplicated tensor store
  • benchmark/report tooling
  • local dashboard
  • privacy-first telemetry client

Lite Runtime

This repository includes the lite runtime.

Higher-efficiency runtime acceleration layers are not included in CONVERA-OSS. Public extension points stay inside the sealed convera_core_api.interface contract.

Public API boundary:

from convera_core_api import interface

refs = interface.store_tensor(tensor)
tensor = interface.load_tensor(refs)
kv = interface.optimize_kv(kv)
state = interface.merge_states(state_a, state_b)

That API returns only tensors, references, and minimal metadata.

Quick Start

/opt/homebrew/bin/python3.12 -m venv .venv312
source .venv312/bin/activate
pip install -e .
convera health

Download a model into models/llama3 before running inference. Meta Llama models may require Hugging Face authentication and license acceptance.

hf auth login
python scripts/download_llama.py

The default target is meta-llama/Meta-Llama-3-8B. If Hugging Face reports that the repository requires approval, accept the model license with the same account and rerun the command.

Run

convera run --prompt "Explain neural networks in detail."
convera benchmark
uvicorn ui.app:app --reload

Dashboard:

http://127.0.0.1:8000/static/index.html

Benchmark

python -m benchmarks.benchmark

The benchmark reports:

  • latency
  • tokens/sec
  • KV hit rate
  • chunk reuse ratio
  • disk usage

For a small public proof of repeated-prompt behavior:

python -m metrics.benchmark_runner

Output:

metrics/output/benchmark.json
metrics/output/benchmark.png
metrics/output/comparison.png

Example output:

Run 1:
  Cached: False
  Latency: 120 ms

Run 2:
  Cached: True
  Latency: 40 ms

The public benchmark reports only cache hit status, latency, and response length. It does not expose token traces, cache contents, or runtime internals.

Benchmark Visualization

Run:

python -m metrics.benchmark_runner

Then open the UI or view the generated graph:

http://127.0.0.1:8000/benchmark-graph

Benchmark

Privacy

Telemetry sends metrics only after CONVERA_METRICS_API_URL and CONVERA_METRICS_API_KEY are configured. It does not send prompts, outputs, file names, or local paths.

The server-side telemetry contract is documented in SERVER_HAND_OFF.md.

Direction

CONVERA-OSS is the adoption layer. It is intentionally useful, inspectable, and easy to run.