From d5c61cc52659dfd09bfcddb00aa565c0e3e8fa0a Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 28 Jul 2025 15:25:47 -0700 Subject: [PATCH] docs - openweb show how to include reasoning content (#13060) --- docs/my-website/docs/tutorials/openweb_ui.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/my-website/docs/tutorials/openweb_ui.md b/docs/my-website/docs/tutorials/openweb_ui.md index fa8e3cdad2..ecf1e289da 100644 --- a/docs/my-website/docs/tutorials/openweb_ui.md +++ b/docs/my-website/docs/tutorials/openweb_ui.md @@ -119,12 +119,17 @@ Example litellm config.yaml: ```yaml model_list: - - model_name: thinking-anthropic-claude-3-7-sonnet + - model_name: thinking-anthropic-claude-3-7-sonnet # Bedrock Anthropic litellm_params: model: bedrock/us.anthropic.claude-3-7-sonnet-20250219-v1:0 thinking: {"type": "enabled", "budget_tokens": 1024} max_tokens: 1080 merge_reasoning_content_in_choices: true + - model_name: vertex_ai/gemini-2.5-pro # Vertex AI Gemini + litellm_params: + model: vertex_ai/gemini-2.5-pro + thinking: {"type": "enabled", "budget_tokens": 1024} + merge_reasoning_content_in_choices: true ``` ### Test it on Open WebUI