sk-xxxxxxxxxxxxxxxx | Please enter the plain text key directly |https://api.rezeai.com/v1 | Includes /v1. | | Model Name | For example, gpt-5 or claude-sonnet-4-6 | Enter a model that RezeAI actually supports and that your account has permission to access. |config.toml file.# Basic Configuration
model_provider = "RezeAI"
model = "Please replace with the actual model name supported by RezeAI"
preferred_auth_method = "apikey"
disable_response_storage = true
# RezeAI Custom Provider Configuration
[model_providers.rezeai]
name = "RezeAI"
base_url = "https://api.rezeai.com/v1"
env_key = "REZEAI_API_KEY"
wire_api = "responses"
base_url) and tells Codex to retrieve the password from the system's REZEAI_API_KEY environment variable.$env:REZEAI_API_KEY="sk-your RezeAI key"
[System.Environment]::SetEnvironmentVariable("REZEAI_API_KEY", "sk-your RezeAI key", "User")
Please summarize the main module structure of the current repository. If Codex responds and outputs results correctly, congratulations, your RezeAI integration is complete!config.toml and environment variable configurations mentioned above, you can directly search for and install the Codex plugin from the VS Code extension store. It's ready to use out of the box, without any additional tedious configuration in VS Code.REZEAI_API_KEY is set successfully. If you are using Windows' permanent write command, you must completely close and reopen the terminal for it to take effect.Bearer prefix to the key you entered.model field in the config.toml file cannot be filled in arbitrarily. Please strictly refer to the list of available models provided in the RezeAI console and fill in the complete name without any errors.responses interface. If instability occurs under high concurrency or special network environments, please ensure that wire_api = "responses" in config.toml is spelled correctly and check whether the currently selected model is fully compatible with OpenAI's Responses specification.**