Point an existing OpenAI SDK integration at DeepSeek models without rewriting code
Run a local chat completions endpoint for cost or privacy reasons
Handle tool calls that need browser interaction using the built-in Playwright layer
Deploy the proxy with Docker Compose for a repeatable local setup
| pedrofariasx/deepsproxy | ryensx/opencodex | sethispr/image-compressor | |
|---|---|---|---|
| Stars | 86 | 86 | 84 |
| Language | TypeScript | TypeScript | TypeScript |
| Setup difficulty | easy | moderate | easy |
| Complexity | 2/5 | 3/5 | 2/5 |
| Audience | developer | developer | general |
Figures from each repo's GitHub metadata at analysis time.
README is written in Portuguese, requires a DeepSeek account for the browser-automated login.
DeepsProxy is a local proxy server that lets any application built for OpenAI's API communicate with DeepSeek's language models instead. The README is written in Portuguese. The core problem it solves is compatibility: many AI tools, SDKs, and coding assistants are designed to talk to OpenAI's specific API format. This proxy sits in between, accepting requests in that OpenAI format and forwarding them to DeepSeek models, so you can swap providers without changing your existing application code. It implements the standard OpenAI chat completions endpoint at a local URL, meaning you simply point your OpenAI SDK or tool at http://localhost:3000 instead of OpenAI's servers. It also includes a browser automation layer powered by Playwright, which is a headless browser control library, allowing the proxy to handle tool calls that require interacting with web pages. Login sessions with DeepSeek are saved so you do not need to authenticate repeatedly. Someone would use this if they are building or using an AI-powered application and want to switch to DeepSeek models without rewriting their integration code, or if they want to route requests through a local proxy for privacy or cost reasons. The tech stack is TypeScript running on Node.js with the Hono web framework and Playwright for browser automation. Docker Compose is available for easy deployment.
A local proxy that lets OpenAI-format apps and SDKs talk to DeepSeek models instead.
Mainly TypeScript. The stack also includes TypeScript, Node.js, Hono.
The README does not state a license.
Setup difficulty is rated easy, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.