chore: 🐝 Update SDK - Generate (spec change merged) 0.11.13 (#414)

Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-07-09 17:15:52 +00:00
committed by GitHub
co-authored by speakeasybot speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
parent c9d39da708
commit 9b7ee68d76
14 changed files with 230 additions and 30 deletions
@@ -0,0 +1,19 @@
---
title: "ReasoningDetailServerToolCall"
---
Record of an OpenRouter server-tool invocation (e.g. openrouter:fusion), carried in reasoning_details so a prior tool call can be rehydrated into a later turn of the same conversation.
## Fields
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
| `arguments` | *str* | :heavy_check_mark: | N/A | |
| `format_` | [OptionalNullable[components.ReasoningFormat]](../components/reasoningformat.mdx) | :heavy_minus_sign: | N/A | unknown |
| `id` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A | |
| `index` | *Optional[int]* | :heavy_minus_sign: | N/A | |
| `result` | *str* | :heavy_check_mark: | N/A | |
| `tool_call_id` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A | |
| `tool_name` | *str* | :heavy_check_mark: | N/A | |
| `type` | [components.ReasoningDetailServerToolCallType](../components/reasoningdetailservertoolcalltype.mdx) | :heavy_check_mark: | N/A | |
@@ -0,0 +1,15 @@
---
title: "ReasoningDetailServerToolCallType"
---
## Example Usage
```python
from openrouter.components import ReasoningDetailServerToolCallType
value: ReasoningDetailServerToolCallType = "reasoning.server_tool_call"
```
## Values
- `"reasoning.server_tool_call"`
+6
View File
@@ -13,6 +13,12 @@ Reasoning detail union schema
value: components.ReasoningDetailEncrypted = /* values here */
```
### `components.ReasoningDetailServerToolCall`
```python
value: components.ReasoningDetailServerToolCall = /* values here */
```
### `components.ReasoningDetailSummary`
```python