Skip to content

Commit b748445

Browse files
release: 1.1.0 (#249)
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Sam El-Borai <sam@elborai.me>
1 parent 8526139 commit b748445

7 files changed

Lines changed: 82 additions & 22 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0"
2+
".": "1.1.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 17
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-487768dc3d7c3ae3c331ed808e08673395dc6fa675eec7ba8daf59b7f4d85882.yml
3-
openapi_spec_hash: 1deeff6ac1a5c95e1c4cf70dbb063a78
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-2c4683b6cf3c31fe903d6b314823be4440c5f1c3db00545bca9534a816179fed.yml
3+
openapi_spec_hash: 4fad55cf0c3fc26500f4030edf31b64d
44
config_hash: eca7e3cb24b18c605dd1bc936da8ef3e

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 1.1.0 (2025-12-18)
4+
5+
Full Changelog: [v1.0.0...v1.1.0](https://github.com/groq/groq-typescript/compare/v1.0.0...v1.1.0)
6+
7+
### Features
8+
9+
* **api:** api update ([4f1199d](https://github.com/groq/groq-typescript/commit/4f1199d897500beb6ffd9283e7b6225d8ab6b29f))
10+
11+
12+
### Chores
13+
14+
* GitHub Terraform: Create/Update .github/workflows/code-freeze-bypass.yaml [skip ci] ([8526139](https://github.com/groq/groq-typescript/commit/8526139863390717f7755e1ec8714c5eb716dcd1))
15+
* GitHub Terraform: Create/Update .github/workflows/stale.yaml [skip ci] ([67e6c4d](https://github.com/groq/groq-typescript/commit/67e6c4da108a6646485b7763e83af6bd223a2849))
16+
* update dependencies ([f425156](https://github.com/groq/groq-typescript/commit/f425156c02d1ab7b54b4993e041b9f35e8c11662))
17+
318
## 1.0.0 (2025-12-15)
419

520
Full Changelog: [v0.37.0...v1.0.0](https://github.com/groq/groq-typescript/compare/v0.37.0...v1.0.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "groq-sdk",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "The official TypeScript library for the Groq API",
55
"author": "Groq <support@groq.com>",
66
"types": "dist/index.d.ts",

src/resources/chat/completions.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,8 @@ export interface ChatCompletionAssistantMessageParam {
316316

317317
/**
318318
* The reasoning output by the assistant if reasoning_format was set to 'parsed'.
319-
* This field is only useable with qwen3 models.
319+
* This field is supported on
320+
* [models that support reasoning](https://console.groq.com/docs/reasoning).
320321
*/
321322
reasoning?: string | null;
322323

@@ -448,8 +449,9 @@ export namespace ChatCompletionChunk {
448449
function_call?: Delta.FunctionCall;
449450

450451
/**
451-
* The model's reasoning for a response. Only available for reasoning models when
452-
* requests parameter reasoning_format has value `parsed.
452+
* The model's reasoning for a response. Only available for
453+
* [models that support reasoning](https://console.groq.com/docs/reasoning) when
454+
* request parameter reasoning_format has value `parsed`.
453455
*/
454456
reasoning?: string | null;
455457

@@ -1187,8 +1189,9 @@ export interface ChatCompletionMessage {
11871189
function_call?: ChatCompletionMessage.FunctionCall;
11881190

11891191
/**
1190-
* The model's reasoning for a response. Only available for reasoning models when
1191-
* requests parameter reasoning_format has value `parsed.
1192+
* The model's reasoning for a response. Only available for
1193+
* [models that support reasoning](https://console.groq.com/docs/reasoning) when
1194+
* request parameter reasoning_format has value `parsed`.
11921195
*/
11931196
reasoning?: string | null;
11941197

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.0.0'; // x-release-please-version
1+
export const VERSION = '1.1.0'; // x-release-please-version

yarn.lock

Lines changed: 54 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@
5454
"@babel/highlight" "^7.23.4"
5555
chalk "^2.4.2"
5656

57+
"@babel/code-frame@^7.27.1":
58+
version "7.27.1"
59+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
60+
integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
61+
dependencies:
62+
"@babel/helper-validator-identifier" "^7.27.1"
63+
js-tokens "^4.0.0"
64+
picocolors "^1.1.1"
65+
5766
"@babel/compat-data@^7.23.5":
5867
version "7.23.5"
5968
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98"
@@ -163,24 +172,33 @@
163172
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83"
164173
integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==
165174

175+
"@babel/helper-string-parser@^7.27.1":
176+
version "7.27.1"
177+
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz#54da796097ab19ce67ed9f88b47bb2ec49367687"
178+
integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==
179+
166180
"@babel/helper-validator-identifier@^7.22.20":
167181
version "7.22.20"
168182
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
169183
integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
170184

185+
"@babel/helper-validator-identifier@^7.27.1", "@babel/helper-validator-identifier@^7.28.5":
186+
version "7.28.5"
187+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#010b6938fab7cb7df74aa2bbc06aa503b8fe5fb4"
188+
integrity "sha1-AQtpOPq3y333SqK7wGqlA7j+X7Q= sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="
189+
171190
"@babel/helper-validator-option@^7.23.5":
172191
version "7.23.5"
173192
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307"
174193
integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==
175194

176195
"@babel/helpers@^7.23.6":
177-
version "7.23.6"
178-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.6.tgz#d03af2ee5fb34691eec0cda90f5ecbb4d4da145a"
179-
integrity sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==
196+
version "7.28.4"
197+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz#fe07274742e95bdf7cf1443593eeb8926ab63827"
198+
integrity "sha1-/gcnR0LpW9988UQ1k+64kmq2OCc= sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w=="
180199
dependencies:
181-
"@babel/template" "^7.22.15"
182-
"@babel/traverse" "^7.23.6"
183-
"@babel/types" "^7.23.6"
200+
"@babel/template" "^7.27.2"
201+
"@babel/types" "^7.28.4"
184202

185203
"@babel/highlight@^7.23.4":
186204
version "7.23.4"
@@ -196,6 +214,13 @@
196214
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b"
197215
integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==
198216

217+
"@babel/parser@^7.27.2":
218+
version "7.28.5"
219+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz#0b0225ee90362f030efd644e8034c99468893b08"
220+
integrity "sha1-CwIl7pA2LwMO/WROgDTJlGiJOwg= sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="
221+
dependencies:
222+
"@babel/types" "^7.28.5"
223+
199224
"@babel/plugin-syntax-async-generators@^7.8.4":
200225
version "7.8.4"
201226
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
@@ -303,6 +328,15 @@
303328
"@babel/parser" "^7.22.15"
304329
"@babel/types" "^7.22.15"
305330

331+
"@babel/template@^7.27.2":
332+
version "7.27.2"
333+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz#fa78ceed3c4e7b63ebf6cb39e5852fca45f6809d"
334+
integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==
335+
dependencies:
336+
"@babel/code-frame" "^7.27.1"
337+
"@babel/parser" "^7.27.2"
338+
"@babel/types" "^7.27.1"
339+
306340
"@babel/traverse@^7.23.6":
307341
version "7.23.6"
308342
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.6.tgz#b53526a2367a0dd6edc423637f3d2d0f2521abc5"
@@ -328,6 +362,14 @@
328362
"@babel/helper-validator-identifier" "^7.22.20"
329363
to-fast-properties "^2.0.0"
330364

365+
"@babel/types@^7.27.1", "@babel/types@^7.28.4", "@babel/types@^7.28.5":
366+
version "7.28.5"
367+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz#10fc405f60897c35f07e85493c932c7b5ca0592b"
368+
integrity "sha1-EPxAX2CJfDXwfoVJPJMse1ygWSs= sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA=="
369+
dependencies:
370+
"@babel/helper-string-parser" "^7.27.1"
371+
"@babel/helper-validator-identifier" "^7.28.5"
372+
331373
"@bcoe/v8-coverage@^0.2.3":
332374
version "0.2.3"
333375
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -1231,9 +1273,9 @@ balanced-match@^1.0.0:
12311273
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
12321274

12331275
brace-expansion@^1.1.7:
1234-
version "1.1.11"
1235-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1236-
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
1276+
version "1.1.12"
1277+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz#ab9b454466e5a8cc3a187beaad580412a9c5b843"
1278+
integrity "sha1-q5tFRGblqMw6GHvqrVgEEqnFuEM= sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="
12371279
dependencies:
12381280
balanced-match "^1.0.0"
12391281
concat-map "0.0.1"
@@ -2459,9 +2501,9 @@ js-tokens@^4.0.0:
24592501
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
24602502

24612503
js-yaml@^3.13.1:
2462-
version "3.14.1"
2463-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
2464-
integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
2504+
version "3.14.2"
2505+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.2.tgz#77485ce1dd7f33c061fd1b16ecea23b55fcb04b0"
2506+
integrity "sha1-d0hc4d1/M8Bh/RsW7OojtV/LBLA= sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg=="
24652507
dependencies:
24662508
argparse "^1.0.7"
24672509
esprima "^4.0.0"

0 commit comments

Comments
 (0)