Solution for breaking quota limits with AIstudioProxyAPI
For the OpenAI API quota limitations faced by developers, the following operation process can be realized by building a local proxy service through AIstudioProxyAPI:
- environmental preparation: Node.js 16+ and Chrome browser installed (Playwright driver support required), 4GB+ of RAM recommended
- Agent Deployment::
- Cloning Project Warehouse
git clone https://github.com/CJackHwang/AIstudioProxyAPI - Installation of dependencies
npm install(playwright component included automatically) - Starting services
node auto_connect_aistudio.cjs
- Cloning Project Warehouse
- Client Configuration: Replacing the original OpenAI API address with the
http://localhost:2048The model name is set to gemini
The method essentially establishes a local forwarding layer through Playwright automation technology to convert OpenAI format requests into Google AI Studio web operations in real-time. Note that the Chrome instance needs to remain logged in and active, and it is recommended to run the proxy service in a personal development environment for a long time.
This answer comes from the articleAIstudioProxyAPI: Unlimited use of the Gemini 2.5 Pro Model APIThe































