chore: 🐝 Update SDK - Generate (spec change merged) 0.11.3 (#390)

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-03 19:58:30 +00:00
committed by GitHub
co-authored by speakeasybot speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
parent d62640c385
commit 22803a327e
16 changed files with 272 additions and 70 deletions
+6
View File
@@ -202,6 +202,12 @@ value: components.OutputAdvisorServerToolItem = /* values here */
value: components.OutputSubagentServerToolItem = /* values here */
```
### `components.OutputFilesServerToolItem`
```python
value: components.OutputFilesServerToolItem = /* values here */
```
### `components.LocalShellCallItem`
```python
@@ -0,0 +1,19 @@
---
title: "OutputFilesServerToolItem"
---
An openrouter:files server tool output item
## Fields
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
| `error` | *Optional[str]* | :heavy_minus_sign: | Error message when the file operation failed. | |
| `file_id` | *Optional[str]* | :heavy_minus_sign: | The target file id supplied in the tool-call arguments. | |
| `filename` | *Optional[str]* | :heavy_minus_sign: | The target filename supplied in the tool-call arguments. | |
| `id` | *Optional[str]* | :heavy_minus_sign: | N/A | |
| `operation` | *Optional[str]* | :heavy_minus_sign: | The file operation performed (list, read, write, or edit). | |
| `result` | *Optional[str]* | :heavy_minus_sign: | JSON-serialized result of the file operation. | |
| `status` | [components.ToolCallStatus](../components/toolcallstatus.mdx) | :heavy_check_mark: | N/A | completed |
| `type` | [components.OutputFilesServerToolItemType](../components/outputfilesservertoolitemtype.mdx) | :heavy_check_mark: | N/A | |
@@ -0,0 +1,15 @@
---
title: "OutputFilesServerToolItemType"
---
## Example Usage
```python
from openrouter.components import OutputFilesServerToolItemType
value: OutputFilesServerToolItemType = "openrouter:files"
```
## Values
- `"openrouter:files"`
+6
View File
@@ -103,6 +103,12 @@ value: components.OutputSearchModelsServerToolItem = /* values here */
value: components.OutputFileSearchServerToolItem = /* values here */
```
### `components.OutputFilesServerToolItem`
```python
value: components.OutputFilesServerToolItem = /* values here */
```
### `components.OutputFusionServerToolItem`
```python