mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-12 09:05:33 +00:00
792ee079c2
* 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
| 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
}
]
}