mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-04 10:04:05 +00:00
Refactor OpenAI provider identity so OpenAI remains the canonical provider for API-key and OAuth-backed flows while legacy openai-codex state is doctor/migration-only. Keeps OpenAI Codex Responses as an API/transport class rather than a provider identity, moves auth aliases through providerAuthAliases, updates doctor repair sequencing for old auth/profile state, and refreshes tests/docs around the canonical OpenAI behavior.
18 lines
798 B
TypeScript
18 lines
798 B
TypeScript
export {
|
|
applyOpenAIConfig,
|
|
applyOpenAIProviderConfig,
|
|
OPENAI_CODEX_DEFAULT_MODEL,
|
|
OPENAI_DEFAULT_AUDIO_TRANSCRIPTION_MODEL,
|
|
OPENAI_DEFAULT_EMBEDDING_MODEL,
|
|
OPENAI_DEFAULT_IMAGE_MODEL,
|
|
OPENAI_DEFAULT_MODEL,
|
|
OPENAI_DEFAULT_TTS_MODEL,
|
|
OPENAI_DEFAULT_TTS_VOICE,
|
|
} from "./default-models.js";
|
|
export { buildOpenAICodexProvider } from "./openai-codex-catalog.js";
|
|
export { loginOpenAICodexOAuth } from "./openai-codex-oauth.runtime.js";
|
|
export { refreshOpenAICodexToken } from "./openai-codex-provider.runtime.js";
|
|
export { buildOpenAICodexProviderPlugin, buildOpenAIProvider } from "./openai-provider.js";
|
|
export { buildOpenAIRealtimeTranscriptionProvider } from "./realtime-transcription-provider.js";
|
|
export { buildOpenAIRealtimeVoiceProvider } from "./realtime-voice-provider.js";
|