- Added Codex authentication endpoints and logic for OAuth flow. - Updated Docker configuration to expose port 1455 for Codex callback. - Enhanced user configuration model to include Codex-related fields. - Integrated Codex selection into the LLM provider UI. - Implemented token management and refresh logic for Codex. - Added utility functions for handling Codex OAuth tokens and state management.
7 lines
238 B
Python
7 lines
238 B
Python
OPENAI_URL = "https://api.openai.com/v1"
|
|
|
|
# Default models
|
|
DEFAULT_OPENAI_MODEL = "gpt-4.1"
|
|
DEFAULT_GOOGLE_MODEL = "models/gemini-2.5-flash"
|
|
DEFAULT_ANTHROPIC_MODEL = "claude-sonnet-4-20250514"
|
|
DEFAULT_CODEX_MODEL = "gpt-5.3-codex-spark"
|