Skip to content

Commit ff834b4

Browse files
release: 0.14.0 (#175)
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent cfb7ab4 commit ff834b4

File tree

6 files changed

+24
-4
lines changed

6 files changed

+24
-4
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.13.0"
2+
".": "0.14.0"
33
}

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 7
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-c5b2589925cd383cce5899869bbccbce45a90bd7c7c9608a4a9d087a88be9f4a.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-d1588e103a6ae0234752b8e54a746fb1e4c93a0ee51ede294017bcd4f0ee4ac0.yml

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.14.0 (2025-02-03)
4+
5+
Full Changelog: [v0.13.0...v0.14.0](https://github.com/groq/groq-typescript/compare/v0.13.0...v0.14.0)
6+
7+
### Features
8+
9+
* **api:** api update ([#174](https://github.com/groq/groq-typescript/issues/174)) ([a8bdb17](https://github.com/groq/groq-typescript/commit/a8bdb179cdefe4fa29a3bcea692c01f166b83b86))
10+
311
## 0.13.0 (2025-01-29)
412

513
Full Changelog: [v0.12.0...v0.13.0](https://github.com/groq/groq-typescript/compare/v0.12.0...v0.13.0)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "groq-sdk",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"description": "The official TypeScript library for the Groq API",
55
"author": "Groq <[email protected]>",
66
"types": "dist/index.d.ts",

src/resources/chat/completions.ts

+12
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,12 @@ export namespace ChatCompletionChunk {
254254
*/
255255
function_call?: Delta.FunctionCall;
256256

257+
/**
258+
* The model's reasoning for a response. Only available for reasoning models when
259+
* requests parameter reasoning_format has value `parsed.
260+
*/
261+
reasoning?: string | null;
262+
257263
/**
258264
* The role of the author of this message.
259265
*/
@@ -434,6 +440,12 @@ export interface ChatCompletionMessage {
434440
*/
435441
function_call?: ChatCompletionMessage.FunctionCall;
436442

443+
/**
444+
* The model's reasoning for a response. Only available for reasoning models when
445+
* requests parameter reasoning_format has value `parsed.
446+
*/
447+
reasoning?: string | null;
448+
437449
/**
438450
* The tool calls generated by the model, such as function calls.
439451
*/

src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.13.0'; // x-release-please-version
1+
export const VERSION = '0.14.0'; // x-release-please-version

0 commit comments

Comments
 (0)