9993c96907
Move provider auth and OAuth flows onto pi-ai Models, compose models.json and extension overlays through ModelRuntime, and retain ModelRegistry as an extension compatibility facade.
19 lines
701 B
TypeScript
19 lines
701 B
TypeScript
import { openAICodexResponsesApi } from "../api/openai-codex-responses.lazy.ts";
|
|
import { lazyOAuth } from "../auth/helpers.ts";
|
|
import { loadOpenAICodexOAuth } from "../auth/oauth/load.ts";
|
|
import { createProvider, type Provider } from "../models.ts";
|
|
import { OPENAI_CODEX_MODELS } from "./openai-codex.models.ts";
|
|
|
|
export function openaiCodexProvider(): Provider<"openai-codex-responses"> {
|
|
return createProvider({
|
|
id: "openai-codex",
|
|
name: "OpenAI Codex",
|
|
baseUrl: "https://chatgpt.com/backend-api",
|
|
auth: {
|
|
oauth: lazyOAuth({ name: "OpenAI (ChatGPT Plus/Pro)", load: loadOpenAICodexOAuth }),
|
|
},
|
|
models: Object.values(OPENAI_CODEX_MODELS),
|
|
api: openAICodexResponsesApi(),
|
|
});
|
|
}
|