From fa1eda967f1d8b3aff71ec6d88c55c03a0adae19 Mon Sep 17 00:00:00 2001 From: Kenny Dizi Date: Wed, 26 Feb 2025 07:53:54 +0700 Subject: [PATCH] Add document for OpenAI models dedicated parameters --- docs/docs/usage-guide/changing_a_model.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/docs/usage-guide/changing_a_model.md b/docs/docs/usage-guide/changing_a_model.md index c4928e19..25b40f0d 100644 --- a/docs/docs/usage-guide/changing_a_model.md +++ b/docs/docs/usage-guide/changing_a_model.md @@ -204,3 +204,12 @@ custom_model_max_tokens= ... 4. Most reasoning models do not support chat-style inputs (`system` and `user` messages) or temperature settings. To bypass chat templates and temperature controls, set `config.custom_reasoning_model = true` in your configuration file. + +## Dedicated parameters + +### OpenAI models + +[config] +reasoning_efffort= = "medium" # "low", "medium", "high" + +With the OpenAI models that support reasoning effort (eg: o3-mini), you can specify its reasoning effort via `config` section. The default value is `medium`, you change it to `high` or `low` based on usages.