diff options
| author | GitHub Action <[email protected]> | 2025-12-10 19:31:11 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2025-12-10 19:31:11 +0000 |
| commit | 2198f9400f01620be700d53ee7f6eda9f0f1ef31 (patch) | |
| tree | 1535c36e81b8113e7e105396fdcee7173cc9919b | |
| parent | ffc4d53923406042c38c724fa62167a05eaafe4d (diff) | |
| download | opencode-2198f9400f01620be700d53ee7f6eda9f0f1ef31.tar.gz opencode-2198f9400f01620be700d53ee7f6eda9f0f1ef31.zip | |
chore: format code
| -rw-r--r-- | packages/sdk/js/src/v2/gen/types.gen.ts | 3 | ||||
| -rw-r--r-- | packages/sdk/openapi.json | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index 6d7b6dcdd..d1be31502 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -1035,6 +1035,7 @@ export type ProviderConfig = { [key: string]: { id?: string name?: string + family?: string release_date?: string attachment?: boolean reasoning?: boolean @@ -1461,6 +1462,7 @@ export type Model = { npm: string } name: string + family?: string capabilities: { temperature: boolean reasoning: boolean @@ -3027,6 +3029,7 @@ export type ProviderListResponses = { [key: string]: { id: string name: string + family?: string release_date: string attachment: boolean reasoning: boolean diff --git a/packages/sdk/openapi.json b/packages/sdk/openapi.json index 2c0a2ea18..962e4108f 100644 --- a/packages/sdk/openapi.json +++ b/packages/sdk/openapi.json @@ -2788,6 +2788,9 @@ "name": { "type": "string" }, + "family": { + "type": "string" + }, "release_date": { "type": "string" }, @@ -7300,6 +7303,9 @@ "name": { "type": "string" }, + "family": { + "type": "string" + }, "release_date": { "type": "string" }, @@ -8287,6 +8293,9 @@ "name": { "type": "string" }, + "family": { + "type": "string" + }, "capabilities": { "type": "object", "properties": { |
