From a4d989578d01e6bf15a271a3f7af9f66623457d4 Mon Sep 17 00:00:00 2001 From: vrtnis <123119434+vrtnis@users.noreply.github.com> Date: Sun, 22 Jun 2025 15:48:03 -0700 Subject: [PATCH] docs: fix typo and clarify provider example in config.md Signed-off-by: vrtnis <123119434+vrtnis@users.noreply.github.com> --- codex-rs/config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/config.md b/codex-rs/config.md index ffa735ff2..3e2ce8ce3 100644 --- a/codex-rs/config.md +++ b/codex-rs/config.md @@ -52,9 +52,9 @@ wire_api = "responses" ## model_providers -This option lets you override and amend the default set of model providers bundled with Codex. This value is a map where the key is the value to use with `model_provider` to select the correspodning provider. +This option lets you override and amend the default set of model providers bundled with Codex. This value is a map where the key is the value to use with `model_provider` to select the corresponding provider. -For example, if you wanted to add a provider that uses the OpenAI 4o model via the chat completions API, then you +For example, if you wanted to add a provider that uses the OpenAI 4o model via the chat completions API, then you can define the provider under model_providers with wire_api = "chat": ```toml # Recall that in TOML, root keys must be listed before tables.