From 3f76220055a011cb4f2086b6b6e0fd4af5dc7426 Mon Sep 17 00:00:00 2001 From: Zhongsheng Ji <9573586@qq.com> Date: Wed, 3 Sep 2025 14:14:57 +0800 Subject: [PATCH] docs: fix typo of config.md (#3082) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed a typo in config.md. I guess TOML doesn't have the “key”: “value” syntax. --- docs/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.md b/docs/config.md index 1d0e8cd7..3e1f93df 100644 --- a/docs/config.md +++ b/docs/config.md @@ -90,7 +90,7 @@ http_headers = { "X-Example-Header" = "example-value" } # This will add the HTTP header `X-Example-Features` with the value of the # `EXAMPLE_FEATURES` environment variable to each request to the model provider # _if_ the environment variable is set and its value is non-empty. -env_http_headers = { "X-Example-Features": "EXAMPLE_FEATURES" } +env_http_headers = { "X-Example-Features" = "EXAMPLE_FEATURES" } ``` ### Per-provider network tuning