HackerTrans
トップ新着トレンドコメント過去質問紹介求人

raphaelmansuy

no profile record

投稿

Show HN: EdgeWhisper – On-device voice-to-text for macOS (Voxtral 4B via MLX)

edgewhisper.com
3 ポイント·投稿者 raphaelmansuy·4 か月前·1 コメント

[untitled]

1 ポイント·投稿者 raphaelmansuy·5 か月前·0 コメント

Edgequake-litellm – Rust-backed drop-in replacement for LiteLLM (v0.1)

github.com
2 ポイント·投稿者 raphaelmansuy·5 か月前·1 コメント

LightRag / GraphRag Implementation in Rust

github.com
2 ポイント·投稿者 raphaelmansuy·5 か月前·0 コメント

コメント

raphaelmansuy
·5 か月前·議論
Hi — I'm Raphael Mansuy. I built edgequake-litellm to provide a low-latency, Rust-backed drop-in replacement for LiteLLM. It exposes the same Python API (`completion()`, `acompletion()`, `stream()`, `embedding()`), supports provider/model routing (OpenAI, Anthropic, Gemini, Mistral, xAI, OpenRouter, Ollama, LM Studio, etc.), and ships as a single ABI3 wheel with zero Python runtime deps.

Quick migration:

```python import edgequake_litellm as litellm # drop-in alias ```

Why build it? LiteLLM is excellent, but its pure-Python HTTP layer adds SDK overhead. I moved the core into Rust (edgequake-llm) and wrapped it with PyO3 to cut latency and provide a robust, multi-arch wheel. This is v0.1 — P0 compatibility is in place, but I'd love feedback on priorities: provider coverage, proxy features, billing/budgets, or tool-calling parity.

Install:

pip install edgequake-litellm

Repo: https://github.com/raphaelmansuy/edgequake-llm

If you try it, please star the repo and open issues for features you want most — I'm actively iterating. Happy to answer technical questions here.