mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
* docs: update docs * docs: additional cleanup * docs(index.md): add initial links * docs: more doc updates * docs(index.md): add more links * docs(files.md): add gemini files API to docs * docs(index.md): add more docs * docs: more docs * docs: update docs
1.6 KiB
1.6 KiB
title | slug | date | authors | tags | hide_table_of_contents | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
v1.63.0 - Anthropic 'thinking' response update | v1.63.0 | 2025-03-05T10:00:00 |
|
|
false |
v1.63.0 fixes Anthropic 'thinking' response on streaming to return the signature
block. Github Issue
It also moves the response structure from signature_delta
to signature
to be the same as Anthropic. Anthropic Docs
Diff
"message": {
...
"reasoning_content": "The capital of France is Paris.",
"thinking_blocks": [
{
"type": "thinking",
"thinking": "The capital of France is Paris.",
- "signature_delta": "EqoBCkgIARABGAIiQL2UoU0b1OHYi+..." # 👈 OLD FORMAT
+ "signature": "EqoBCkgIARABGAIiQL2UoU0b1OHYi+..." # 👈 KEY CHANGE
}
]
}