From 8f7d326feb8f849ddf197cd3856d4b9c330feb79 Mon Sep 17 00:00:00 2001 From: Marc Goodner Date: Thu, 30 Apr 2026 10:57:55 -0700 Subject: [PATCH] docs: register provider-openai-chatgpt in module catalog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds openai-chatgpt provider entry to the official Amplifier module catalog in MODULES.md. This provider connects to ChatGPT subscriptions (Plus, Pro, Team, Enterprise) via Codex CLI's OAuth device code flow. No API key required — authenticates using the same mechanism as the Codex CLI itself, supporting the full set of ChatGPT models via the subscription endpoint. Related: https://github.com/microsoft/amplifier-bundle-routing-matrix/pull/18 Co-Authored-By: Amplifier <240397093+microsoft-amplifier@users.noreply.github.com> --- docs/MODULES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/MODULES.md b/docs/MODULES.md index a8590775..be4f2e93 100644 --- a/docs/MODULES.md +++ b/docs/MODULES.md @@ -125,6 +125,7 @@ Connect to AI model providers. |--------|-------------|------------| | **provider-anthropic** | Anthropic Claude integration (Sonnet 4.5, Opus, etc.) | [amplifier-module-provider-anthropic](https://github.com/microsoft/amplifier-module-provider-anthropic) | | **provider-openai** | OpenAI GPT integration | [amplifier-module-provider-openai](https://github.com/microsoft/amplifier-module-provider-openai) | +| **provider-openai-chatgpt** | ChatGPT subscription backend (Plus/Pro/Team/Enterprise) via Codex CLI OAuth | [amplifier-module-provider-openai-chatgpt](https://github.com/microsoft/amplifier-module-provider-openai-chatgpt) | | **provider-azure-openai** | Azure OpenAI with managed identity support | [amplifier-module-provider-azure-openai](https://github.com/microsoft/amplifier-module-provider-azure-openai) | | **provider-chat-completions** | OpenAI Chat Completions wire-format integration (llama.cpp, vLLM, LM Studio, LocalAI, etc.) | [amplifier-module-provider-chat-completions](https://github.com/microsoft/amplifier-module-provider-chat-completions) | | **provider-gemini** | Google Gemini integration with 1M context and thinking | [amplifier-module-provider-gemini](https://github.com/microsoft/amplifier-module-provider-gemini) |