From fb8492f4ea0de24e13c4034c1ed1d4f0a032f5ce Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 26 Feb 2025 23:51:07 -0800 Subject: [PATCH] docs(reasoning_content.md): add more info to docs --- docs/my-website/docs/reasoning_content.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/my-website/docs/reasoning_content.md b/docs/my-website/docs/reasoning_content.md index 1f2119d6e3..ce049e0127 100644 --- a/docs/my-website/docs/reasoning_content.md +++ b/docs/my-website/docs/reasoning_content.md @@ -97,7 +97,9 @@ curl http://0.0.0.0:4000/v1/chat/completions \ ## Spec -- `reasoning_content` - str: The reasoning content from the model. +These fields can be accessed via `response.choices[0].message.reasoning_content` and `response.choices[0].message.thinking_blocks`. + +- `reasoning_content` - str: The reasoning content from the model. Returned across all providers. - `thinking_blocks` - Optional[List[Dict[str, str]]]: A list of thinking blocks from the model. Only returned for Anthropic models. - `type` - str: The type of thinking block. - `thinking` - str: The thinking from the model.