Skip to content

Commit

Permalink
release: 0.14.0 (#175)
Browse files Browse the repository at this point in the history
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
  • Loading branch information
stainless-app[bot] authored Feb 3, 2025
1 parent cfb7ab4 commit ff834b4
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.13.0"
".": "0.14.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 7
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-c5b2589925cd383cce5899869bbccbce45a90bd7c7c9608a4a9d087a88be9f4a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-d1588e103a6ae0234752b8e54a746fb1e4c93a0ee51ede294017bcd4f0ee4ac0.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.14.0 (2025-02-03)

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

### Features

* **api:** api update ([#174](https://github.com/groq/groq-typescript/issues/174)) ([a8bdb17](https://github.com/groq/groq-typescript/commit/a8bdb179cdefe4fa29a3bcea692c01f166b83b86))

## 0.13.0 (2025-01-29)

Full Changelog: [v0.12.0...v0.13.0](https://github.com/groq/groq-typescript/compare/v0.12.0...v0.13.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "groq-sdk",
"version": "0.13.0",
"version": "0.14.0",
"description": "The official TypeScript library for the Groq API",
"author": "Groq <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
12 changes: 12 additions & 0 deletions src/resources/chat/completions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,12 @@ export namespace ChatCompletionChunk {
*/
function_call?: Delta.FunctionCall;

/**
* The model's reasoning for a response. Only available for reasoning models when
* requests parameter reasoning_format has value `parsed.
*/
reasoning?: string | null;

/**
* The role of the author of this message.
*/
Expand Down Expand Up @@ -434,6 +440,12 @@ export interface ChatCompletionMessage {
*/
function_call?: ChatCompletionMessage.FunctionCall;

/**
* The model's reasoning for a response. Only available for reasoning models when
* requests parameter reasoning_format has value `parsed.
*/
reasoning?: string | null;

/**
* The tool calls generated by the model, such as function calls.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.13.0'; // x-release-please-version
export const VERSION = '0.14.0'; // x-release-please-version

0 comments on commit ff834b4

Please sign in to comment.