Free API for accessing GPT-3.5
Top 62.4% on sourcepulse
This project provides a free, self-hostable API gateway for GPT-3.5-turbo, enabling users to access OpenAI's models without direct login or paid subscriptions. It's designed for developers and researchers who need programmatic access to large language models and want to avoid the complexities of managing API keys or direct OpenAI account usage.
How It Works
The service acts as a proxy, routing requests to OpenAI's ChatGPT service. It supports multiple authentication methods, including direct account tokens (Bearer tokens) and a novel AUTHORIZATIONS
mechanism. This latter feature allows users to define custom authorization headers to protect their endpoints from abuse, effectively creating a shared, rate-limited access pool. It maps various GPT-3.5-turbo model names to a common backend identifier.
Quick Start & Requirements
docker run -itd --name=free-gpt3.5-2api -e AUTHORIZATIONS=abc,bac -p 9846:3040 ghcr.io/aurorax-neo/free-gpt3.5-2api
Highlighted Details
Authorization: Bearer <token>
and Authorization: ac-<token>
for account access tokens.AUTHORIZATIONS
environment variable for endpoint protection./v1/chat/completions
.gpt-3.5-turbo
, gpt-3.5-turbo-16k
, and gpt-4o
.Maintenance & Community
Licensing & Compatibility
Limitations & Caveats
1 month ago
1 day